Преглед изворни кода

[A端][修复]:查询商户列表时加上合适的条件

release_toaliyun_real
hupeng пре 7 година
родитељ
комит
a4b4e7e64b
1 измењених фајлова са 6 додато и 3 уклоњено
  1. +6
    -3
      mallinkService/src/main/resources/mapper/WxCouponMerchantMapper.xml

+ 6
- 3
mallinkService/src/main/resources/mapper/WxCouponMerchantMapper.xml Прегледај датотеку

@@ -95,7 +95,8 @@
left join wx_shop s on ms.shop_id = s.id
left join wx_mall_building mb on s.building = mb.id
left join wx_mall_floor mf on s.floor = mf.id
where cm.product_id = #{productId}
where cm.status = 0
and cm.product_id = #{productId}
</select>

<sql id="allMerchantNameColumns">
@@ -113,7 +114,8 @@
<include refid="allMerchantNameColumns"/>
from wx_coupon_merchant cm
left join wx_merchant m on m.id = cm.merchant_id
where cm.product_id = #{productId}
where cm.status = 0
and cm.product_id = #{productId}
</select>

<select id="findMerchantBaseList" parameterType="java.util.Map" resultMap="MerchantVoResultMap">
@@ -121,7 +123,8 @@
<include refid="allMerchantBaseColumns"/>
from wx_coupon_merchant cm
left join wx_merchant m on m.id = cm.merchant_id
where cm.product_id = #{productId}
where cm.status = 0
and cm.product_id = #{productId}
</select>




Loading…
Откажи
Сачувај