From 5676b8b307fe74abf811760e8534da6506fee74c Mon Sep 17 00:00:00 2001
From: 16639036659 <577530412@qq.com>
Date: Wed, 17 Jul 2024 14:15:09 +0800
Subject: [PATCH] 定时任务时间调整
---
src/main/resources/mybatis/doublePrevention/PreventCJReportCheckRecordFromTaskMapper.xml | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mybatis/doublePrevention/PreventCJReportCheckRecordFromTaskMapper.xml b/src/main/resources/mybatis/doublePrevention/PreventCJReportCheckRecordFromTaskMapper.xml
index d5c69b1..0b05d0c 100644
--- a/src/main/resources/mybatis/doublePrevention/PreventCJReportCheckRecordFromTaskMapper.xml
+++ b/src/main/resources/mybatis/doublePrevention/PreventCJReportCheckRecordFromTaskMapper.xml
@@ -77,4 +77,18 @@
</foreach>
</insert>
+<!-- int updateCJReportStatusBatchById(List<PreventCJReportCheckRecordFromTask> cjRecordFromTasks);-->
+ <update id="updateCJReportStatusBatchById">
+ update prevent_cj_report_check_record_from_task
+ <set>
+ <if test="report_status != null ">
+ report_status = #{reportStatus},
+ </if>
+ <if test="report_time != null ">
+ report_time= #{reportTime},
+ </if>
+ </set>
+ where id = #{id}
+ </update>
+
</mapper>
--
Gitblit v1.9.2