Compare commits

...

2 Commits

Author SHA1 Message Date
hayu 7bf95da044 Merge remote-tracking branch 'origin/master' 2025-08-19 17:44:05 +08:00
hayu 24aeb2d45f 修改 2025-08-19 17:43:02 +08:00
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>