This commit is contained in:
shuo.wang
2025-05-15 19:00:55 +08:00
parent e344acc7de
commit 3c2f97d2f6
5 changed files with 39 additions and 0 deletions

View File

@@ -75,4 +75,12 @@
#{item}
</foreach>
</select>
<select id="getSignType" resultType="com.cool.store.entity.SignFranchiseDO">
select shop_id as shopId, sign_type as signType from xfsg_sign_franchise
where
shop_id in
<foreach collection="list" separator="," item="item" index="index" open="(" close=")">
#{item}
</foreach>
</select>
</mapper>