From 2b9d73629912d3982af1d96da8f9d50b7863cd58 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Fri, 06 Jun 2025 10:33:55 +0800
Subject: [PATCH] 优化每年专项数据获取,定时重推数据
---
src/main/java/com/ruoyi/doublePrevention/service/baseService/PreventCJReportRiskEventService.java | 64 ++++++++++++++++----------------
1 files changed, 32 insertions(+), 32 deletions(-)
diff --git a/src/main/java/com/ruoyi/doublePrevention/service/baseService/PreventCJReportRiskEventService.java b/src/main/java/com/ruoyi/doublePrevention/service/baseService/PreventCJReportRiskEventService.java
index 05ff260..db994a5 100644
--- a/src/main/java/com/ruoyi/doublePrevention/service/baseService/PreventCJReportRiskEventService.java
+++ b/src/main/java/com/ruoyi/doublePrevention/service/baseService/PreventCJReportRiskEventService.java
@@ -1,32 +1,32 @@
-package com.ruoyi.doublePrevention.service.baseService;
-
-import com.baomidou.mybatisplus.extension.service.IService;
-import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportRiskEvent;
-import com.ruoyi.doublePrevention.repository.param.HandlerCJReportParam;
-import com.ruoyi.doublePrevention.repository.param.HandlerReportParam;
-
-import java.util.List;
-
-public interface PreventCJReportRiskEventService extends IService<PreventCJReportRiskEvent> {
-
-// /**
-// * 分页查询
-// * */
-// IPage<PreventCJReportRiskEvent> getReportRiskEventPage(Page<Object> objectPage, PreReportRiskEventQueryReqDTO queryReqDTO);
- /**
- * 插入
- * */
- int insertEventLists(PreventCJReportRiskEvent eventList);
- /**
- * 上报数据-查询待上报数据
- * */
- List<PreventCJReportRiskEvent> listReportEventDate();
- /**
- * 修改上报状态
- * */
- int updateEventReportStatus(HandlerReportParam handlerReportParam);
- /**
- * 修改上报状态-通过id
- * */
- void updateCJReportStatusById(HandlerCJReportParam handlerCJReportParam);
-}
+package com.ruoyi.doublePrevention.service.baseService;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.ruoyi.doublePrevention.entity.CJReport.PreventCJReportRiskEvent;
+import com.ruoyi.doublePrevention.repository.param.HandlerCJReportParam;
+import com.ruoyi.doublePrevention.repository.param.HandlerReportParam;
+
+import java.util.List;
+
+public interface PreventCJReportRiskEventService extends IService<PreventCJReportRiskEvent> {
+
+// /**
+// * 分页查询
+// * */
+// IPage<PreventCJReportRiskEvent> getReportRiskEventPage(Page<Object> objectPage, PreReportRiskEventQueryReqDTO queryReqDTO);
+ /**
+ * 插入
+ * */
+ int insertEventLists(PreventCJReportRiskEvent eventList);
+ /**
+ * 上报数据-查询待上报数据
+ * */
+ List<PreventCJReportRiskEvent> listReportEventDate();
+ /**
+ * 修改上报状态
+ * */
+ int updateEventReportStatus(HandlerReportParam handlerReportParam);
+ /**
+ * 修改上报状态-通过id
+ * */
+ void updateCJReportStatusById(HandlerCJReportParam handlerCJReportParam);
+}
--
Gitblit v1.9.2