feat:matterType

This commit is contained in:
苏竹红
2025-08-29 13:16:33 +08:00
parent f6b695bf69
commit dce1fe5e52
14 changed files with 121 additions and 4 deletions

View File

@@ -216,6 +216,24 @@
a.id = #{id}
</select>
<update id="batchUpdateHandle">
UPDATE zxjp_store_message
SET
process_status = 1,
process_time = NOW(),
read_status = 1,
read_time = NOW(),
update_time = NOW()
<where>
<if test="id != null">
AND message_template_id = #{id}
</if>
and store_code IN
<foreach item="item" collection="storeCodeList" index="index" separator="," close=")" open="(">
#{item}
</foreach>
</where>
</update>