This commit is contained in:
杜建超 2020-11-18 17:53:39 +08:00
parent 22d597c36b
commit a4da7a6ebe
2 changed files with 4 additions and 2 deletions

View File

@ -602,7 +602,9 @@
</select> </select>
<update id="batchDeleteByResultRecordIds"> <update id="batchDeleteByResultRecordIds">
update lz_result_record set is_delete = 1 where update lz_result_record set is_delete = 1
,gmt_modified = now()
where
is_delete = 0 is_delete = 0
and id in ( and id in (
<foreach collection="resultRecordIds" item="id" separator=","> <foreach collection="resultRecordIds" item="id" separator=",">

View File

@ -285,7 +285,7 @@
<update id="batchDeleteByRecordIds"> <update id="batchDeleteByRecordIds">
UPDATE lz_flow_record UPDATE lz_flow_record
SET is_delete = 1, SET is_delete = 1
,gmt_modified = now() ,gmt_modified = now()
where is_delete = 0 where is_delete = 0
and record_id in ( and record_id in (