Commit 4556b8d9 by weijiguang

下单时校验订单中sku数量

parent d8862251
...@@ -30,5 +30,5 @@ public class BannerListPo { ...@@ -30,5 +30,5 @@ public class BannerListPo {
private String area; private String area;
@ApiModelProperty("店铺ID") @ApiModelProperty("店铺ID")
private String shopId; private String shopIds;
} }
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
<if test="province != null and province != ''">and province like concat('%,', #{province}, ',%')</if> <if test="province != null and province != ''">and province like concat('%,', #{province}, ',%')</if>
<if test="city != null and city != ''">and city like concat('%,', #{city}, ',%')</if> <if test="city != null and city != ''">and city like concat('%,', #{city}, ',%')</if>
<if test="area != null and area != ''">and area like concat('%,', #{area}, ',%')</if> <if test="area != null and area != ''">and area like concat('%,', #{area}, ',%')</if>
<if test="shopId != null and shopId != ''">and shop_ids like concat('%,', #{shopId}, ',%')</if> <if test="shopIds != null and shopIds != ''">and shop_ids like concat('%,', #{shopIds}, ',%')</if>
<if test="state != null ">and state = #{state}</if> <if test="state != null ">and state = #{state}</if>
</where> </where>
order by created_at desc order by created_at desc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment