优化数据处理接口

This commit is contained in:
shuo.wang
2025-06-09 13:26:28 +08:00
parent 06fc2affdc
commit 248d6c8367
8 changed files with 97 additions and 16 deletions

View File

@@ -40,6 +40,14 @@
#{shopId}
</foreach>
</update>
<update id="batchUpdateXgjCollectionStatusAndXgjFeesPaid">
<foreach collection="list" separator=";" item="item">
update xfsg_franchise_fee
set xgj_collection_status = #{item.xgjCollectionStatus},
xgj_fees_paid = #{item.xgjFeesPaid}
where shop_id = #{item.shopId}
</foreach>
</update>
<select id="selectByShopId" resultType="com.cool.store.entity.FranchiseFeeDO">
select *