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