From 3cde2386c1ddaeeacc8b815d25af3b6a84541e46 Mon Sep 17 00:00:00 2001
From: 换个名字嗨起来 <577530412@qq.com>
Date: Thu, 25 Jul 2024 15:58:48 +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