| | |
| | | ) b on a.id = b.id |
| | | ) jppl on jppl.place_id = jp.id |
| | | where jp.is_deleted = 0 and jp.source!=3 |
| | | <if test="place.roleName!=null and place.roleName!='' and place.createUser!=null"> |
| | | <choose> |
| | | <when test="place.roleName=='网格员'"> |
| | | and |
| | | ( |
| | | jp.create_user = #{place.createUser} |
| | | <if test="houseCodeList != null and houseCodeList.size()>0"> |
| | | or jp.house_code in |
| | | <foreach collection="houseCodeList" item="houseCode" separator ="," open="(" close=")"> |
| | | #{houseCode} |
| | | </foreach> |
| | | </if> |
| | | ) |
| | | </when> |
| | | <otherwise> |
| | | and jp.principal_user_id = #{place.createUser} |
| | | </otherwise> |
| | | </choose> |
| | | <if test="houseCodeList != null and houseCodeList.size()>0"> |
| | | and jp.house_code in |
| | | <foreach collection="houseCodeList" item="houseCode" separator ="," open="(" close=")"> |
| | | #{houseCode} |
| | | </foreach> |
| | | </if> |
| | | <if test="place.placeName!=null and place.placeName!=''"> |
| | | and jp.place_name like concat('%',#{place.placeName},'%') |
| | |
| | | and jp.source = #{place.source} |
| | | </if> |
| | | <if test="place.isPerfect==1"> |
| | | and |
| | | ( |
| | | jp.place_name is null |
| | | or jp.image_urls is null |
| | | or jppl.poi_code is null |
| | | or bu.real_name is null |
| | | or bu.phone is null |
| | | ) |
| | | and jpe.confirm_flag = 4 |
| | | </if> |
| | | <if test="place.isPerfect==2"> |
| | | and jp.place_name != "" |
| | | and jp.image_urls != "" |
| | | and jppl.poi_code is not null |
| | | and bu.real_name != "" |
| | | and bu.phone != "" |
| | | and jpe.confirm_flag >= 1 and jpe.confirm_flag < 4 |
| | | </if> |
| | | <if test="place.regionCode != null and place.regionCode !='' "> |
| | | and jg.community_code like concat('%',#{place.regionCode},'%') |
| | |
| | | and jp.is_deleted = 0 |
| | | and jp.source !=3 |
| | | </select> |
| | | |
| | | <!--根据标签编号集合查询对应的场所--> |
| | | <select id="getPlaceListByParam" resultType="org.springblade.modules.place.vo.PlaceVO"> |
| | | select jp.* from jczz_place jp |
| | | left join jczz_place_poi_label jppl on jppl.place_id = jp.id |
| | | where jp.is_deleted = 0 and jppl.type = 3 |
| | | and jppl.color = #{color} |
| | | <choose> |
| | | <when test="list!=null and list.size()>0"> |
| | | and jppl.poi_code in |
| | | <foreach collection="list" item="id" separator="," open="(" close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </when> |
| | | <otherwise> |
| | | and jppl.poi_code in ('') |
| | | </otherwise> |
| | | </choose> |
| | | </select> |
| | | </mapper> |