feat:密码数据处理,验签排除空字符串,导出接口
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user