This commit is contained in:
shuo.wang
2025-04-29 20:13:43 +08:00
parent fcc86e38f0
commit 921447d672
6 changed files with 29 additions and 11 deletions

View File

@@ -175,13 +175,13 @@
<foreach collection="list" item="item" separator=";">
update xfsg_partner_user_info
<set>
<if test="record.downstreamSystemSalting != null">
<if test="item.downstreamSystemSalting != null">
downstream_system_salting = #{item.downstreamSystemSalting},
</if>
<if test="record.downstreamSystemPassword != null">
<if test="item.downstreamSystemPassword != null">
downstream_system_password = #{item.downstreamSystemPassword},
</if>
<if test="record.downstreamSystemSecondaryPassword != null">
<if test="item.downstreamSystemSecondaryPassword != null">
downstream_system_secondary_password = #{item.downstreamSystemSecondaryPassword},
</if>
</set>

View File

@@ -162,13 +162,13 @@
<foreach collection="list" item="item" separator=";">
update xfsg_shop_account
<set>
<if test="record.passwordSalt != null">
<if test="item.passwordSalt != null">
password_salt = #{item.passwordSalt},
</if>
<if test="record.password != null">
<if test="item.password != null">
password = #{item.password},
</if>
<if test="record.secondaryPassword != null">
<if test="item.secondaryPassword != null">
secondary_password = #{item.secondaryPassword},
</if>
</set>