This commit is contained in:
hayu 2025-08-19 17:38:39 +08:00
parent d9f391e456
commit 6e8f6d9f72
1 changed files with 4 additions and 2 deletions

View File

@ -523,7 +523,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="backId != null"> <if test="backId != null">
back_id, back_id,
</if> </if>
create_time create_time,
is_ds
) )
values ( values (
<if test="taskId != null"> <if test="taskId != null">
@ -554,7 +555,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="backId != null"> <if test="backId != null">
#{backId}, #{backId},
</if> </if>
NOW() NOW(),
'1'
) )
</insert> </insert>