zhanghua
2023-11-29 704e7207d74b6477c5f472c5aba92d484ab17f98
ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java
@@ -14,6 +14,7 @@
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;
@@ -38,9 +39,9 @@
     */
    String uploadEvent(Long caseId);
    Page listViolationsPage(Page page, Integer state, Integer resource, String code, String categoryBig, String categorySmall, Integer street, String site, String startTime, String endTime, Integer violationsTypeId);
    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 current, Integer size, Integer state, Integer resource);
    Boolean saveViolationCase(ViolationParam violationParam, Long id);
@@ -62,13 +63,14 @@
    void endCase(Long caseId, String result, String opinion);
    Page<BaseCase> selectPage(Page<BaseCase> setSize, String number, Integer streetId, Integer categories, String startTime, String endTime, String site);
    Page<BaseCase> selectPage(Page<BaseCase> setSize, String number, Integer communityId, Integer categories, String startTime, String endTime, String site, Integer state, Integer streetId, Integer time);
    Page<QueryForViolationVO> selectViolation(QueryForViolationParam queryForViolationParam);
    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();
@@ -89,4 +91,4 @@
    List<DelayVO> selectDelayList();
    Map<String, Object> statistics();
}
}