修改移动端注册时,保存sys_user_role表时的user_id获取

This commit is contained in:
sh
2025-10-27 11:34:02 +08:00
parent a28354f95c
commit a0fd4eb43a
2 changed files with 3 additions and 1 deletions

View File

@@ -87,6 +87,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="status != null and status != ''">status,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="remark != null and remark != ''">remark,</if>
<if test="idCard != null and idCard != ''">id_card,</if>
create_time
)values(
<if test="userId != null and userId != ''">#{userId},</if>
@@ -101,6 +102,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="status != null and status != ''">#{status},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="remark != null and remark != ''">#{remark},</if>
<if test="idCard != null and idCard != ''">#{idCard},</if>
sysdate()
)
</insert>