dev-v2 #3

Merged
bunny merged 122 commits from dev-v2 into master-v2 2024-03-30 23:40:58 +08:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit 5efbc229f8 - Show all commits

View File

@ -16,9 +16,7 @@
<update id="updateSysUser">
update sys_user
set
<if test="avatar != null and avatar != ''">
avatar = #{avatar},
</if>
<if test="userName != null and userName != ''">
username = #{userName},
</if>
@ -31,6 +29,9 @@
<if test="phone != null and phone != ''">
phone = #{phone},
</if>
<if test="avatar != null and avatar != ''">
avatar = #{avatar},
</if>
<if test="description != null and description != ''">
description = #{description},
</if>