feat:密码数据处理,验签排除空字符串,导出接口

This commit is contained in:
shuo.wang
2025-04-28 22:24:49 +08:00
parent 6da34ba779
commit bd80c5477f
48 changed files with 1532 additions and 233 deletions

View File

@@ -158,11 +158,36 @@
#{shopId}
</foreach>
</update>
<update id="dateHandle">
<foreach collection="list" item="item" separator=";">
update xfsg_shop_account
<set>
<if test="record.passwordSalt != null">
password_salt = #{item.passwordSalt},
</if>
<if test="record.password != null">
password = #{item.password},
</if>
<if test="record.secondaryPassword != null">
secondary_password = #{item.secondaryPassword},
</if>
</set>
where id = #{item.id}
</foreach>
</update>
<select id="getALlFail">
<select id="getALlFail">
select * from xfsg_shop_account WHERE
system_name in ('火码POS')
and status = 6
</select>
<select id="getSpecificByShopIds" resultType="com.cool.store.entity.ShopAccountDO">
select shop_id as shopId,system_name as systemName,status from xfsg_shop_account
where shop_id in
<foreach collection="shopIds" item="shopId" open="(" close=")" separator=",">
#{shopId}
</foreach>
</select>
</mapper>