| @@ -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> | ||||