feat:签约合同优化 + 数据处理

This commit is contained in:
shuo.wang
2025-05-08 15:32:40 +08:00
parent 626ce23c3d
commit 11c597a8f0
7 changed files with 66 additions and 11 deletions

View File

@@ -498,4 +498,9 @@
<update id="updateShopCode">
update xfsg_shop_info set shop_code = #{shopCode} where id = #{shopId}
</update>
<update id="updateShopCity">
<foreach collection="list" item="item" index="index" separator=";">
update xfsg_shop_info set province =#{item.province}, city = #{item.city}, district=#{item.district} where id = #{item.id}
</foreach>
</update>
</mapper>