`id`,`tenant_id`,`shop_number`,`build_area`,`operation_area`,`building`,`floor`,`status`,`x`,`y`,`addr`,`baidu_poi`,`longitude`,`latitude`,`create_date`,`update_date`,`img_url`
where 1 = 1
and `id` = #{id}
and `tenant_id` = #{tenantId}
and `shop_number` like concat('%', #{shopNumber},'%')
and `build_area` like concat('%', #{buildArea},'%')
and `operation_area` like concat('%', #{operationArea},'%')
and `building` like concat('%', #{building},'%')
and `floor` = #{floor}
and `status` = #{status}
and `x` = #{x}
and `y` = #{y}
and `addr` like concat('%', #{addr},'%')
and `baidu_poi` like concat('%', #{baiduPoi},'%')
and `longitude` = #{longitude}
and `latitude` = #{latitude}
and `create_date` = #{createDate}
and `update_date` = #{updateDate}
and id in
#{idItem}
order by ${sortColumns}