| | |
| | | jda.id,ifnull(jda.unit_name,"未知单元") unitName,jda.unit_code unitCode,jda.floor,jda.house_name as houseNo, |
| | | jda.address_code addressCode, |
| | | jh.name as realName,jh.relationship as roleType,1 as addressType, |
| | | juhl.id as cid,juhl.house_code,juhl.label_id,juhl.label_name,juhl.color,juhl.household_id |
| | | juhl.id as cid,juhl.house_code,juhl.label_id,juhl.label_name,juhl.color,juhl.household_id, |
| | | juhlh.color as houseColor |
| | | from jczz_doorplate_address jda |
| | | left join |
| | | ( |
| | |
| | | ) |
| | | ) jh |
| | | on jda.address_code = jh.house_code |
| | | left join jczz_user_house_label juhl on juhl.house_code = jda.address_code and lable_type=1 |
| | | left join jczz_user_house_label juhl on juhl.house_code = jda.address_code and juhl.lable_type=1 |
| | | left join jczz_user_house_label juhlh on juhlh.house_code = jda.address_code and juhlh.lable_type=2 |
| | | where 1=1 |
| | | and floor != '' |
| | | and house_name != '' |
| | |
| | | ( |
| | | select jda2.id,'' as unitName,address_code as unitCode,doorplate_name as floor,'' as houseNo,address_code as addressCode, |
| | | '' as realName,'' as roleType,2 as addressType, |
| | | juhl.id as cid,juhl.house_code,juhl.label_id,juhl.label_name,juhl.color,juhl.household_id |
| | | juhl.id as cid,juhl.house_code,juhl.label_id,juhl.label_name,juhl.color,juhl.household_id, |
| | | juhlh.color as houseColor |
| | | from jczz_doorplate_address jda2 |
| | | left join jczz_user_house_label juhl on juhl.house_code = jda2.address_code and lable_type=1 |
| | | left join jczz_user_house_label juhl on juhl.house_code = jda2.address_code and juhl.lable_type=1 |
| | | left join jczz_user_house_label juhlh on juhlh.house_code = jda2.address_code and juhlh.lable_type=2 |
| | | where 1=1 |
| | | and building_code = #{houseParam.code} |
| | | and building_name != '' |
| | |
| | | where 1=1 |
| | | and jh.house_code is null |
| | | and doorplate_type = '户室牌' |
| | | <if test="townName!=null and townName!=''"> |
| | | and jda.town_street_name like concat('%',#{townName},'%') |
| | | </if> |
| | | limit 0,1000 |
| | | </select> |
| | | |
| | | <!--查询商超--> |
| | |
| | | <!--查询所有的地址表id集合--> |
| | | <select id="getAoiCodeList" resultType="java.lang.Long"> |
| | | select |
| | | max(id) |
| | | min(id) |
| | | from jczz_doorplate_address |
| | | where aoi_code != "" and aoi_name !="" |
| | | and doorplate_type = '大门牌' |
| | | GROUP BY aoi_code |
| | | union all |
| | | ( |
| | | select |
| | | max(id) |
| | | min(id) |
| | | from jczz_doorplate_address |
| | | where aoi_code != "" and sub_aoi != "" |
| | | and doorplate_type = '大门牌' |
| | | group by aoi_code |
| | | ) |
| | | </select> |
| | |
| | | and jda.building_code is not null |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!--查询所有户室数据--> |
| | | <select id="getNotHouseListCount" resultType="java.lang.Integer"> |
| | | select count(*) from jczz_doorplate_address jda |
| | | left join jczz_house jh on jh.house_code = jda.address_code |
| | | where 1=1 |
| | | and jh.house_code is null |
| | | and doorplate_type = '户室牌' |
| | | <if test="townName!=null and townName!=''"> |
| | | and jda.town_street_name like concat('%',#{townName},'%') |
| | | </if> |
| | | limit 0,1000 |
| | | </select> |
| | | </mapper> |