From ca2c7d63825d8bbe74978b365e8f978aaa489b34 Mon Sep 17 00:00:00 2001 From: 16639036659 <577530412@qq.com> Date: 星期三, 17 七月 2024 16:43:23 +0800 Subject: [PATCH] 修复bug --- 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