开店列表+导出

This commit is contained in:
shuo.wang
2025-01-09 17:18:21 +08:00
parent 4acd471fbd
commit 2d94266e62
38 changed files with 662 additions and 28 deletions

View File

@@ -13,4 +13,15 @@
order by create_time desc
limit 1
</select>
<select id="selectByShopIds" resultType="com.cool.store.entity.SignFranchiseDO">
select contract_code,shop_id,contract_start_time,contract_end_time
from xfsg_sign_franchise
where 1=1
<if test="list !=null and list.size >0">
and shop_id in
<foreach collection="list" open="(" separator="," close=")" item="item" index="index">
#{item}
</foreach>
</if>
</select>
</mapper>