创建用户添加更新时间

This commit is contained in:
sxu 2025-04-11 13:29:58 +08:00
parent 72615f513f
commit 4678773451
1 changed files with 2 additions and 2 deletions

View File

@ -276,7 +276,7 @@
<if test="approvalStatus != null and approvalStatus!=''">approval_status,</if>
<if test="isPermanent != null and isPermanent!=''">is_permanent,</if>
<if test="isBuiltIn != null and isBuiltIn!=''">is_built_in,</if>
create_time
create_time, update_time
)values(
<if test="userId != null and userId != ''">#{userId},</if>
<if test="deptId != null and deptId != ''">#{deptId},</if>
@ -294,7 +294,7 @@
<if test="approvalStatus != null and approvalStatus!=''">#{approvalStatus},</if>
<if test="isPermanent != null and isPermanent!=''">#{isPermanent},</if>
<if test="isBuiltIn != null and isBuiltIn!=''">#{isBuiltIn},</if>
sysdate()
sysdate(), sysdate()
)
</insert>