From 92ed53e44fb2da1f91b8fb9932af8ff433febe83 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 06 七月 2022 18:47:09 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-db/src/main/resources/mapper/common/AreaServiceDaoImplMapper.xml | 64 ++++++++++++++++++++++++++++++++
1 files changed, 64 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/common/AreaServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/common/AreaServiceDaoImplMapper.xml
old mode 100644
new mode 100755
index dfede5a..7a05635
--- a/java110-db/src/main/resources/mapper/common/AreaServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/common/AreaServiceDaoImplMapper.xml
@@ -16,6 +16,7 @@
t.create_time createTime
from city_area t
where 1=1
+ and t.status_cd = '0'
<if test="areaCode != null and areaCode !=''">
and t.area_code = #{areaCode}
</if>
@@ -33,5 +34,68 @@
</if>
</select>
+ <!--鏌ヨ鍦板尯鏁版嵁-->
+ <select id="getWholeArea" resultType="Map" parameterType="Map">
+ select
+ t.id ,
+ t.area_code areaCode,
+ t.area_name areaName,
+ t.area_level areaLevel,
+ t.parent_area_code parentAreaCode,
+ t.parent_area_name parentAreaName,
+ t.lon,
+ t.lat,
+ t.create_time createTime
+ from city_area t
+ where 1=1
+ and t.status_cd = '0'
+ <if test="areaCode != null and areaCode !=''">
+ and t.area_code like concat(#{areaCode},'%')
+ </if>
+ <if test="areaName != null and areaName != ''">
+ and t.area_name like concat('%',#{areaName},'%')
+ </if>
+ <if test="areaLevel != null and areaLevel !=''">
+ and t.area_level = #{areaLevel}
+ </if>
+ <if test="parentAreaCode != null and parentAreaCode !=''">
+ and t.parent_area_code = #{parentAreaCode}
+ </if>
+ <if test="parentAreaName != null and parentAreaName !=''">
+ and t.parent_area_name like concat('%',#{parentAreaName},'%')
+ </if>
+ ORDER BY t.area_code asc
+ </select>
+
+
+
+ <select id="getProvCityArea" parameterType="Map" resultType="Map">
+ SELECT
+ par.parent_area_code provCode,
+ par.parent_area_name provName,
+ par.area_code cityCode,
+ par.area_name cityName,
+ chil.area_code areaCode,
+ chil.area_name areaName
+ FROM
+ city_area par,
+ city_area chil
+ WHERE
+ chil.parent_area_code = par.area_code
+ AND chil.area_level = '303'
+ and chil.status_cd = '0'
+ and par.status_cd = '0'
+ <if test="areaCode != null and areaCode !=''">
+ and chil.area_code = #{areaCode}
+ </if>
+ <if test="areaCodes != null">
+ and chil.area_code in
+ <foreach collection="areaCodes" open="(" close=")"
+ separator="," item="item">
+ #{item}
+ </foreach>
+ </if>
+ </select>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.8.0