| | |
| | | @ApiOperation("违规检索-导出") |
| | | public void queryForViolationExport(HttpServletResponse response, QueryForViolationParam queryForViolationParam) { |
| | | String sheetName = "违规数据"; |
| | | EasyExcelUtils.export(response, sheetName, QueryForViolationVO.class, baseCaseService.selectViolation(queryForViolationParam).getRecords()); |
| | | EasyExcelUtils.export(response, sheetName, QueryForViolationVO.class, baseCaseService.selectViolationList(queryForViolationParam)); |
| | | } |
| | | |
| | | @GetMapping("/video_inspection") |
| | |
| | | and t1.state=#{queryForViolationParam.state} |
| | | </if> |
| | | <if test="queryForViolationParam.carNumber != null and queryForViolationParam.carNumber!=''"> |
| | | and t1.car_umber like concat('%',#{queryForViolationParam.carNumber},'%') |
| | | and t2.car_umber like concat('%',#{queryForViolationParam.carNumber},'%') |
| | | </if> |
| | | <if test="queryForViolationParam.videoPointId != null"> |
| | | and t1.video_point_id=#{queryForViolationParam.videoPointId} |