fix 开店管理根据意向区域查询

This commit is contained in:
shuo.wang
2025-01-14 18:48:40 +08:00
parent a5747908e2
commit a98828529a
8 changed files with 66 additions and 31 deletions

View File

@@ -318,6 +318,13 @@
<if test="request.shopStatus!=null">
and a.shop_status = #{request.shopStatus}
</if>
<if test="request.wantShopAreaAllIds != null and request.wantShopAreaAllIds.size() > 0">
and a.want_shop_area_id in
<foreach collection="request.wantShopAreaAllIds" item="wantShopAreaId" index="index" open="(" separator=","
close=")">
#{wantShopAreaId}
</foreach>
</if>
order by a.update_time desc
</select>
<select id="getShopListByRegion" resultType="com.cool.store.entity.ShopInfoDO">