<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="org.springblade.modules.system.mapper.RegionMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="regionResultMap" type="org.springblade.modules.system.entity.Region">
|
<id column="code" property="code"/>
|
<result column="parent_code" property="parentCode"/>
|
<result column="ancestors" property="ancestors"/>
|
<result column="name" property="name"/>
|
<result column="province_code" property="provinceCode"/>
|
<result column="province_name" property="provinceName"/>
|
<result column="city_code" property="cityCode"/>
|
<result column="city_name" property="cityName"/>
|
<result column="district_code" property="districtCode"/>
|
<result column="district_name" property="districtName"/>
|
<result column="town_code" property="townCode"/>
|
<result column="town_name" property="townName"/>
|
<result column="village_code" property="villageCode"/>
|
<result column="village_name" property="villageName"/>
|
<result column="regionLevel" property="regionLevel"/>
|
<result column="sort" property="sort"/>
|
<result column="remark" property="remark"/>
|
</resultMap>
|
|
<resultMap id="regionVOResultMap" type="org.springblade.modules.system.vo.RegionVO">
|
<id column="code" property="code"/>
|
<result column="parent_code" property="parentCode"/>
|
<result column="ancestors" property="ancestors"/>
|
<result column="name" property="name"/>
|
<result column="province_code" property="provinceCode"/>
|
<result column="province_name" property="provinceName"/>
|
<result column="city_code" property="cityCode"/>
|
<result column="city_name" property="cityName"/>
|
<result column="district_code" property="districtCode"/>
|
<result column="district_name" property="districtName"/>
|
<result column="town_code" property="townCode"/>
|
<result column="town_name" property="townName"/>
|
<result column="village_code" property="villageCode"/>
|
<result column="village_name" property="villageName"/>
|
<result column="regionLevel" property="regionLevel"/>
|
<result column="sort" property="sort"/>
|
<result column="remark" property="remark"/>
|
<result column="id" property="id"/>
|
<result column="parent_id" property="parentId"/>
|
<result column="has_children" property="hasChildren"/>
|
</resultMap>
|
|
<resultMap id="treeNodeResultMap" type="org.springblade.core.tool.node.TreeNode">
|
<id column="id" property="id"/>
|
<result column="parent_id" property="parentId"/>
|
<result column="title" property="title"/>
|
<result column="value" property="value"/>
|
<result column="key" property="key"/>
|
<result column="has_children" property="hasChildren"/>
|
</resultMap>
|
|
<select id="lazyList" resultMap="regionVOResultMap">
|
SELECT
|
region.*,
|
( SELECT CASE WHEN count( 1 ) > 0 THEN 1 ELSE 0 END FROM blade_region WHERE parent_code = region.code ) AS "has_children"
|
FROM
|
blade_region region
|
<where>
|
<if test="param1!=null">
|
and region.parent_code = #{param1}
|
</if>
|
<if test="param2.code!=null and param2.code!=''">
|
and region.code like concat(concat('%', #{param2.code}),'%')
|
</if>
|
<if test="param2.name!=null and param2.name!=''">
|
and region.name like concat(concat('%', #{param2.name}),'%')
|
</if>
|
</where>
|
</select>
|
|
<select id="lazyTree" resultMap="treeNodeResultMap">
|
SELECT
|
region.code AS "id",
|
region.parent_code AS "parent_id",
|
region.name AS "title",
|
region.code AS "value",
|
region.code AS "key",
|
( SELECT CASE WHEN count( 1 ) > 0 THEN 1 ELSE 0 END FROM blade_region WHERE parent_code = region.code ) AS "has_children"
|
FROM
|
blade_region region
|
<where>
|
<if test="param1!=null">
|
and region.parent_code = #{param1}
|
</if>
|
<if test="param2.code!=null and param2.code!=''">
|
and region.code like concat(concat('%', #{param2.code}),'%')
|
</if>
|
<if test="param2.name!=null and param2.name!=''">
|
and region.name like concat(concat('%', #{param2.name}),'%')
|
</if>
|
</where>
|
ORDER BY region.code
|
</select>
|
|
<select id="exportRegion" resultType="org.springblade.modules.system.excel.RegionExcel">
|
SELECT * FROM blade_region ${ew.customSqlSegment}
|
</select>
|
|
<!--根据父编号查询所有的下级-->
|
<!-- <select id="getTreeList" resultType="org.springblade.common.node.TreeStringNode">-->
|
<!-- <if test="region.cityCode!=null and region.cityCode!=''">-->
|
<!-- SELECT-->
|
<!-- code as id,-->
|
<!-- parent_code as parentId,-->
|
<!-- name,-->
|
<!-- sort-->
|
<!-- FROM blade_region-->
|
<!-- where code = #{region.cityCode}-->
|
<!-- union all-->
|
<!-- select-->
|
<!-- grid_code as id,-->
|
<!-- community_code as parentId,-->
|
<!-- grid_name as name,-->
|
<!-- jg.sort-->
|
<!-- FROM jczz_grid jg-->
|
<!-- left join blade_region br on br.village_code = jg.community_code and br.region_level = 5-->
|
<!-- where jg.is_deleted = 0 and br.city_code = #{region.cityCode}-->
|
<!-- union all-->
|
<!-- </if>-->
|
<!-- SELECT-->
|
<!-- code as id,-->
|
<!-- parent_code as parentId,-->
|
<!-- name,-->
|
<!-- sort-->
|
<!-- FROM blade_region-->
|
<!-- where 1=1-->
|
<!-- and district_code = '361102'-->
|
<!-- <if test="region.parentCode!=null and region.parentCode!=''">-->
|
<!-- and parent_code = #{region.parentCode}-->
|
<!-- </if>-->
|
<!-- <if test="isAdministrator==2">-->
|
<!-- <choose>-->
|
<!-- <when test="regionChildCodesList !=null and regionChildCodesList.size()>0">-->
|
<!-- and code in-->
|
<!-- <foreach collection="regionChildCodesList" item="code" open="(" close=")" separator=",">-->
|
<!-- #{code}-->
|
<!-- </foreach>-->
|
<!-- </when>-->
|
<!-- <otherwise>-->
|
<!-- and 1=1-->
|
<!-- </otherwise>-->
|
<!-- </choose>-->
|
<!-- </if>-->
|
<!-- </select>-->
|
|
<!--根据父编号查询所有的下级-->
|
<select id="getTreeList" resultType="org.springblade.common.node.TreeStringNode">
|
<if test="region.cityCode!=null and region.cityCode!=''">
|
select
|
grid_code as id,
|
community_code as parentId,
|
grid_name as name,
|
jg.sort
|
FROM jczz_grid jg
|
left join blade_region br on br.village_code = jg.community_code and br.region_level = 5
|
where jg.is_deleted = 0 and br.city_code = #{region.cityCode}
|
union all
|
</if>
|
SELECT
|
code as id,
|
parent_code as parentId,
|
name,
|
sort
|
FROM blade_region
|
where 1=1
|
and district_code = '361102'
|
<if test="region.parentCode!=null and region.parentCode!=''">
|
and parent_code = #{region.parentCode}
|
</if>
|
<if test="isAdministrator==2">
|
<choose>
|
<when test="regionChildCodesList !=null and regionChildCodesList.size()>0">
|
and code in
|
<foreach collection="regionChildCodesList" item="code" open="(" close=")" separator=",">
|
#{code}
|
</foreach>
|
</when>
|
<otherwise>
|
and 1=1
|
</otherwise>
|
</choose>
|
</if>
|
</select>
|
|
<!--根据当前编号查询-->
|
<select id="getTownTree" resultType="org.springblade.common.node.TreeStringNode">
|
SELECT
|
code as id,
|
parent_code as parentId,
|
name
|
FROM blade_region where district_code = '361102'
|
and region_level = 4
|
<if test="regionCode!=null and regionCode!=''">
|
and code = #{regionCode}
|
</if>
|
union
|
SELECT
|
code as id,
|
parent_code as parentId,
|
name
|
FROM blade_region where district_code = '361102'
|
and region_level = 4
|
<if test="regionCode!=null and regionCode!=''">
|
and parent_code = #{regionCode}
|
</if>
|
</select>
|
|
<!--树列表(包含省市县三级)-->
|
<select id="getBaseTree" resultType="org.springblade.common.node.TreeStringNode">
|
SELECT
|
code as id,
|
parent_code as parentId,
|
name
|
FROM blade_region
|
where region_level >0 and region_level <4
|
</select>
|
|
<!--查询parentCode 长度少于12 的-->
|
<select id="getCodeLess12DataList" resultType="org.springblade.modules.system.entity.Region">
|
SELECT * FROM blade_region
|
where length(parent_code) < 12
|
</select>
|
|
<!--查询下级区域(拼接网格)-->
|
<select id="getRegionChildList" resultType="org.springblade.modules.system.entity.Region">
|
SELECT
|
code,parent_code,name,ancestors,region_level,sort
|
FROM blade_region
|
where ancestors like concat('%',#{regionCode},'%')
|
union all
|
(
|
SELECT
|
jg.grid_code as code,
|
jg.community_code as parent_code,
|
jg.grid_name as name,
|
'' as ancestors,
|
6 as region_level,
|
jg.sort
|
FROM blade_region br
|
right join jczz_grid jg on jg.community_code = br.village_code and jg.is_deleted = 0
|
where br.ancestors like concat('%',#{regionCode},'%')
|
)
|
</select>
|
|
|
<!--查询公安对应的辖区树-->
|
<select id="getPoliceTreeList" resultType="org.springblade.common.node.TreeStringNode">
|
SELECT
|
CODE AS id,
|
parent_code AS parentId,
|
NAME
|
FROM jczz_police_station
|
WHERE is_deleted = 0
|
UNION ALL
|
SELECT
|
jw_grid_code AS id,
|
pcs_code AS parentId,
|
community_name AS NAME
|
FROM jczz_police_affairs_grid
|
WHERE is_deleted = 0 AND pcs_code IS NOT NULL
|
</select>
|
|
</mapper>
|