From 704e7207d74b6477c5f472c5aba92d484ab17f98 Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期三, 29 十一月 2023 17:07:11 +0800 Subject: [PATCH] Merge branch 'master' of http://42.193.1.25:9521/r/sccg_server --- ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java | 44 +++++++++++++++++++++++++++++++++++--------- 1 files changed, 35 insertions(+), 9 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java b/ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java index 984d961..6288ec9 100644 --- a/ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java +++ b/ycl-platform/src/main/java/com/ycl/service/caseHandler/IBaseCaseService.java @@ -1,14 +1,20 @@ 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.dto.casePool.IllegalBuildingParam; +import com.ycl.dto.casePool.VideoInspectParam; import com.ycl.dto.casePool.ViolationParam; import com.ycl.entity.caseHandler.BaseCase; import com.ycl.entity.caseHandler.BaseCaseDetail; import com.ycl.vo.casePool.BaseCaseVO; import com.ycl.vo.casePool.QueryForViolationVO; +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; @@ -31,15 +37,16 @@ * @author AI * @date 2022-09-28 16:52 */ - String uploadEvent(Integer caseId); + 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 current, Integer size, Integer state, Integer resource); - Boolean saveViolationCase(ViolationParam violationParam,Long id); + Boolean saveViolationCase(ViolationParam violationParam, Long id); Boolean saveIllegalBuildingCase(IllegalBuildingParam illegalBuildingParam, Long id); + /** * 鍚屾妗堜欢杩涘害 * @@ -54,15 +61,34 @@ ArrayList<String> listCaseImages(Integer id, Integer type); - void endCase(Long caseId, String result,String opinion); + void endCase(Long caseId, String result, String opinion); - List<BaseCase> selectPage(Page<BaseCase> setSize, String number, Integer communityId, 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); - Page<BaseCaseVO> selectVideoInspection(Integer current); + List<QueryForViolationVO> selectViolationList(QueryForViolationParam queryForViolationParam); - Map<String,Object> selectCount(); + Page<BaseCaseVO> selectVideoInspection(Integer current, Integer pageSize, Long gradeId, Long videoId, String beginTime, String endTime); - Boolean updateCase(ViolationParam violationParam); + Map<String, Object> selectCount(); + + Boolean updateCase(VideoInspectParam videoInspectParam); + + Integer dayCount(); + + Integer weekCount(); + + Integer dispatchCount(); + + Integer alCount(); + + IPage<EventVO> selectEventList(String beginTime, String endTime, Integer pageIndex, Integer pageSize); + + List<VideoAndAreaVO> areaCount(); + + List<DelayVO> selectDelayList(); + + Map<String, Object> statistics(); } -- Gitblit v1.8.0