From f14c50cb0036d3ddd655ce4e34732ba396a836c4 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 30 五月 2023 12:42:03 +0800
Subject: [PATCH] optimize 统计
---
java110-db/src/main/resources/mapper/community/CommunityLocationV1ServiceDaoImplMapper.xml | 151 +++++++++++++++++++++++++++----------------------
1 files changed, 83 insertions(+), 68 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/community/CommunityLocationV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/CommunityLocationV1ServiceDaoImplMapper.xml
index b13d4e5..6cc78ec 100644
--- a/java110-db/src/main/resources/mapper/community/CommunityLocationV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/CommunityLocationV1ServiceDaoImplMapper.xml
@@ -5,93 +5,108 @@
<mapper namespace="communityLocationV1ServiceDaoImpl">
-
-
-
<!-- 淇濆瓨灏忓尯浣嶇疆淇℃伅 add by wuxw 2018-07-03 -->
<insert id="saveCommunityLocationInfo" parameterType="Map">
insert into community_location(
-location_name,location_id,location_type,community_id
-) values (
-#{locationName},#{locationId},#{locationType},#{communityId}
-)
+ location_name,location_id,location_type,community_id,location_obj_id,location_obj_name
+ ) values (
+ #{locationName},#{locationId},#{locationType},#{communityId},#{locationObjId},#{locationObjName}
+ )
</insert>
-
<!-- 鏌ヨ灏忓尯浣嶇疆淇℃伅 add by wuxw 2018-07-03 -->
<select id="getCommunityLocationInfo" parameterType="Map" resultType="Map">
- select t.location_name,t.location_name locationName,t.location_id,t.location_id locationId,t.location_type,t.location_type locationType,t.status_cd,t.status_cd statusCd,t.community_id,t.community_id communityId
-from community_location t
-where 1 =1
-<if test="locationName !=null and locationName != ''">
- and t.location_name= #{locationName}
-</if>
-<if test="locationId !=null and locationId != ''">
- and t.location_id= #{locationId}
-</if>
-<if test="locationType !=null and locationType != ''">
- and t.location_type= #{locationType}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
-</if>
-order by t.create_time desc
-<if test="page != -1 and page != null ">
- limit #{page}, #{row}
-</if>
+ select t.location_name,t.location_name locationName,t.location_id,t.location_id
+ locationId,t.location_type,t.location_type locationType,t.status_cd,t.status_cd
+ statusCd,t.community_id,t.community_id communityId,t.location_obj_id locationObjId,t.location_obj_name locationObjName
+ from community_location t
+ where 1 =1
+ <if test="locationName !=null and locationName != ''">
+ and t.location_name= #{locationName}
+ </if>
+ <if test="locationId !=null and locationId != ''">
+ and t.location_id= #{locationId}
+ </if>
+ <if test="locationType !=null and locationType != ''">
+ and t.location_type= #{locationType}
+ </if>
+ <if test="locationObjId !=null and locationObjId != ''">
+ and t.location_obj_id= #{locationObjId}
+ </if>
+ <if test="locationObjName !=null and locationObjName != ''">
+ and t.location_obj_name= #{locationObjName}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="communityId !=null and communityId != ''">
+ and t.community_id= #{communityId}
+ </if>
+ order by t.create_time desc
+ <if test="page != -1 and page != null ">
+ limit #{page}, #{row}
+ </if>
</select>
-
-
<!-- 淇敼灏忓尯浣嶇疆淇℃伅 add by wuxw 2018-07-03 -->
<update id="updateCommunityLocationInfo" parameterType="Map">
- update community_location t set t.status_cd = #{statusCd}
-<if test="newBId != null and newBId != ''">
-,t.b_id = #{newBId}
-</if>
-<if test="locationName !=null and locationName != ''">
-, t.location_name= #{locationName}
-</if>
-<if test="locationType !=null and locationType != ''">
-, t.location_type= #{locationType}
-</if>
-<if test="communityId !=null and communityId != ''">
-, t.community_id= #{communityId}
-</if>
- where 1=1 <if test="locationId !=null and locationId != ''">
-and t.location_id= #{locationId}
-</if>
+ update community_location t set t.status_cd = #{statusCd}
+ <if test="newBId != null and newBId != ''">
+ ,t.b_id = #{newBId}
+ </if>
+ <if test="locationName !=null and locationName != ''">
+ , t.location_name= #{locationName}
+ </if>
+ <if test="locationType !=null and locationType != ''">
+ , t.location_type= #{locationType}
+ </if>
+ <if test="locationObjId !=null and locationObjId != ''">
+ , t.location_obj_id= #{locationObjId}
+ </if>
+ <if test="locationObjName !=null and locationObjName != ''">
+ , t.location_obj_name= #{locationObjName}
+ </if>
+ where 1=1
+ <if test="locationId !=null and locationId != ''">
+ and t.location_id= #{locationId}
+ </if>
+ <if test="communityId !=null and communityId != ''">
+ and t.community_id= #{communityId}
+ </if>
</update>
<!-- 鏌ヨ灏忓尯浣嶇疆鏁伴噺 add by wuxw 2018-07-03 -->
- <select id="queryCommunityLocationsCount" parameterType="Map" resultType="Map">
- select count(1) count
-from community_location t
-where 1 =1
-<if test="locationName !=null and locationName != ''">
- and t.location_name= #{locationName}
-</if>
-<if test="locationId !=null and locationId != ''">
- and t.location_id= #{locationId}
-</if>
-<if test="locationType !=null and locationType != ''">
- and t.location_type= #{locationType}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="communityId !=null and communityId != ''">
- and t.community_id= #{communityId}
-</if>
+ <select id="queryCommunityLocationsCount" parameterType="Map" resultType="Map">
+ select count(1) count
+ from community_location t
+ where 1 =1
+ <if test="locationName !=null and locationName != ''">
+ and t.location_name= #{locationName}
+ </if>
+ <if test="locationId !=null and locationId != ''">
+ and t.location_id= #{locationId}
+ </if>
+ <if test="locationType !=null and locationType != ''">
+ and t.location_type= #{locationType}
+ </if>
+ <if test="locationObjId !=null and locationObjId != ''">
+ and t.location_obj_id= #{locationObjId}
+ </if>
+ <if test="locationObjName !=null and locationObjName != ''">
+ and t.location_obj_name= #{locationObjName}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="communityId !=null and communityId != ''">
+ and t.community_id= #{communityId}
+ </if>
- </select>
+ </select>
</mapper>
--
Gitblit v1.8.0