update 集团列表

This commit is contained in:
2024-01-20 14:09:09 +08:00
parent 0e778e77c2
commit 8ed2ab56f2
6 changed files with 42 additions and 21 deletions

View File

@@ -122,6 +122,12 @@
left join pile_merchant_info t2 on t1.merchant_id = t2.id
left join pile_station_info t3 on t3.id = t1.station_id
where t1.del_flag = '0'
<if test="merchantIdList != null and merchantIdList.size() != 0">
and t1.merchant_id in
<foreach collection="merchantIdList" item="merchantId" open="(" separator="," close=")">
#{merchantId,jdbcType=VARCHAR}
</foreach>
</if>
</select>
<select id="queryMemberDiscount" resultType="com.jsowell.pile.vo.web.MemberDiscountVO">