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">
back_id,
</if>
create_time
create_time,
is_ds
)
values (
<if test="newTaskId != null">
@ -240,7 +241,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="backId != null">
#{backId},
</if>
NOW()
NOW(),
'1'
)
</insert>