| | |
| | | package com.ycl.service.caseHandler; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.dto.caseHandler.QueryForViolationParam; |
| | |
| | | import com.ycl.vo.cockpit.enforcementEvents.DelayVO; |
| | | import com.ycl.vo.cockpit.enforcementEvents.EventVO; |
| | | import com.ycl.vo.cockpit.enforcementEvents.VideoAndAreaVO; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | |
| | | */ |
| | | String uploadEvent(Long caseId); |
| | | |
| | | Page listViolationsPage(Page page, Integer state, Integer resource); |
| | | Page listViolationsPage(Integer size, Integer current, Integer state, Integer resource, String code, String categoryBig, String categorySmall, Integer street, String site, String startTime, String endTime, Integer violationsTypeId,Integer videoId); |
| | | |
| | | Page listIllegalBuilding(Page page, Integer state, Integer resource); |
| | | Page listIllegalBuilding(Integer size, Integer current, Integer state, Integer resource); |
| | | |
| | | Boolean saveViolationCase(ViolationParam violationParam, Long id); |
| | | |
| | |
| | | |
| | | List<QueryForViolationVO> selectViolationList(QueryForViolationParam queryForViolationParam); |
| | | |
| | | Page<BaseCaseVO> selectVideoInspection(Integer current); |
| | | Page<BaseCaseVO> selectVideoInspection(Integer current, Integer pageSize,Long gradeId, Long videoId, String beginTime, String endTime); |
| | | |
| | | Map<String, Object> selectCount(); |
| | | |
| | |
| | | |
| | | Integer alCount(); |
| | | |
| | | List<EventVO> selectEventList(String beginTime, String endTime); |
| | | IPage<EventVO> selectEventList(String beginTime, String endTime, Integer pageIndex, Integer pageSize); |
| | | |
| | | List<VideoAndAreaVO> areaCount(); |
| | | |
| | | List<DelayVO> selectDelayList(); |
| | | |
| | | Map<String, Object> statistics(); |
| | | } |