Browse Source

[商户][添加][是否显示在C端]

release_toaliyun_real
gongbiao 7 years ago
parent
commit
70d802921b
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      mallinkService/src/main/resources/mapper/WxMerchantMapper.xml

+ 5
- 5
mallinkService/src/main/resources/mapper/WxMerchantMapper.xml View File

@@ -23,7 +23,7 @@


<sql id="allColumns"> <sql id="allColumns">
`id`,`tenant_id`,`img_url`,`name`,`link_phone`,`create_date`,`update_date`,`car_vendor_type`,`car_params`,`status`,`link_person`, `id`,`tenant_id`,`img_url`,`name`,`link_phone`,`create_date`,`update_date`,`car_vendor_type`,`car_params`,`status`,`link_person`,
`business_id`,`shop_type`,`brand`,`type`,`public`
`business_id`,`shop_type`,`brand`,`type`,`is_public`
</sql> </sql>


<sql id="dynamicWhereConditions"> <sql id="dynamicWhereConditions">
@@ -77,8 +77,8 @@
<if test=" null != type "> <if test=" null != type ">
and `type` = #{type} and `type` = #{type}
</if> </if>
<if test=" null != public ">
and `public` = #{public}
<if test=" null != isPublic ">
and `is_public` = #{isPublic}
</if> </if>
<if test=" null != ids "> <if test=" null != ids ">
and id in and id in
@@ -177,8 +177,8 @@
<if test=" null != floorName and ''!=floorName "> <if test=" null != floorName and ''!=floorName ">
and mf.`floor_name` like concat('%', #{floorName},'%') and mf.`floor_name` like concat('%', #{floorName},'%')
</if> </if>
<if test=" null != is_public">
<if test=" null != isPublic">
and m.`is_public` = #{isPublic} and m.`is_public` = #{isPublic}
</if> </if>




Loading…
Cancel
Save