From 60c27c15c277238bf54d436aee210c7c5af7fdc5 Mon Sep 17 00:00:00 2001
From: 换个名字嗨起来 <577530412@qq.com>
Date: Thu, 25 Jul 2024 16:01:45 +0800
Subject: [PATCH] Http响应结果异常输出
---
src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventRiskDangerCheckLogServiceImpl.java | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventRiskDangerCheckLogServiceImpl.java b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventRiskDangerCheckLogServiceImpl.java
index 6632df1..6c1e8d7 100644
--- a/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventRiskDangerCheckLogServiceImpl.java
+++ b/src/main/java/com/ruoyi/doublePrevention/service/baseService/impl/PreventRiskDangerCheckLogServiceImpl.java
@@ -78,4 +78,19 @@
Date reportTime = new Date();
return preventRiskDangerCheckLogRepository.updateTaskReportStatusByList(taskIds, reportStatus, reportTime);
}
+
+ @Override
+ public List<PreventRiskDangerCheckLog> listRectifyReportTask() {
+ return preventRiskDangerCheckLogRepository.listRectifyReportTask();
+ }
+
+ @Override
+ public List<PreventRiskDangerCheckLog> listSearchRectifyReportTask() {
+ return preventRiskDangerCheckLogRepository.listSearchRectifyReportTask();
+ }
+
+ @Override
+ public int updateSearchRectifyReportTask(PreventRiskDangerCheckLog dangerCheckLog) {
+ return preventRiskDangerCheckLogRepository.updateSearchRectifyReportTask(dangerCheckLog);
+ }
}
--
Gitblit v1.9.2