From 6c56f35bef519265b4e7ae98fda6ca87855daf9f Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期四, 15 十二月 2022 11:29:08 +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 |   55 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 50 insertions(+), 5 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 2174583..bef1bc3 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,10 +1,22 @@
 package com.ycl.service.caseHandler;
 
 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.baomidou.mybatisplus.extension.service.IService;
+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 java.util.ArrayList;
+import java.util.List;
+import java.util.Map;
 
 /**
  * <p>
@@ -23,15 +35,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 listIllegalBuilding(Page page, Integer state, Integer resource);
 
-    Boolean saveViolationCase(ViolationParam violationParam,Integer id);
+    Boolean saveViolationCase(ViolationParam violationParam, Long id);
 
-    Boolean saveIllegalBuildingCase(IllegalBuildingParam illegalBuildingParam, Integer id);
+    Boolean saveIllegalBuildingCase(IllegalBuildingParam illegalBuildingParam, Long id);
+
     /**
      * 鍚屾妗堜欢杩涘害
      *
@@ -41,4 +54,36 @@
      * @date 2022-09-28 17:45
      */
     String processEvent(Integer caseId);
-}
+
+    BaseCaseDetail baseCaseDetail(String code);
+
+    ArrayList<String> listCaseImages(Integer id, Integer type);
+
+    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<QueryForViolationVO> selectViolation(QueryForViolationParam queryForViolationParam);
+
+    List<QueryForViolationVO> selectViolationList(QueryForViolationParam queryForViolationParam);
+
+    Page<BaseCaseVO> selectVideoInspection(Integer current);
+
+    Map<String, Object> selectCount();
+
+    Boolean updateCase(VideoInspectParam videoInspectParam);
+
+    Integer dayCount();
+
+    Integer weekCount();
+
+    Integer dispatchCount();
+
+    Integer alCount();
+
+    List<EventVO> selectEventList(String beginTime, String endTime);
+
+    List<VideoAndAreaVO> areaCount();
+
+    List<DelayVO> selectDelayList();
+}
\ No newline at end of file

--
Gitblit v1.8.0