获取状态为完成的门店列表接口+记账本定时任务

This commit is contained in:
shuo.wang
2025-03-31 17:36:10 +08:00
parent 4e3eda6659
commit 00a57cc6e6
14 changed files with 98 additions and 8 deletions

View File

@@ -403,6 +403,16 @@
#{item}
</foreach>
</select>
<select id="getShopIdByShopStatus" resultType="com.cool.store.entity.ShopInfoDO">
select id ,partner_id as partnerId
from xfsg_shop_info
where shop_status = #{shopStatus}
</select>
<select id="getShopListAndStatusIsOverByLineId" resultType="com.cool.store.response.MiniShopsResponse">
select id, shop_name as shopName
from xfsg_shop_info
where line_id = #{lineId} and shop_status = 1
</select>
<update id="batchUpdate" parameterType="list">
<foreach collection="list" item="item" index="index" open="" close="" separator=";">