文件分类标记

This commit is contained in:
liang.chao 2025-09-12 16:39:09 +08:00
parent f9524f0017
commit 7f02158886
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null and remark != ''">remark,</if>
<if test="createUserId != null">create_user_id,</if>
<if test="createUserName != null and createUserName != ''">create_user_name,</if>
<if test="updateUserId != null">update_user_id,</if>
<if test="updateUserName != null and updateUserName != ''">update_user_name,</if>
<if test="delFlag != null and delFlag != ''">del_flag,</if>
create_time
</trim>
@ -22,6 +24,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="remark != null and remark != ''">#{remark},</if>
<if test="createUserId != null">#{createUserId},</if>
<if test="createUserName != null and createUserName != ''">#{createUserName},</if>
<if test="updateUserId != null">#{updateUserId},</if>
<if test="updateUserName != null and updateUserName != ''">#{updateUserName},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
now()
</trim>