This commit is contained in:
hayu 2025-08-19 17:43:02 +08:00
parent 6e8f6d9f72
commit 24aeb2d45f
1 changed files with 4 additions and 2 deletions

View File

@ -212,7 +212,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="newTaskId != null"> <if test="newTaskId != null">
@ -240,7 +241,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>