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/CommunityMemberV1ServiceDaoImplMapper.xml | 22 ++++++++++++++++------
1 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/community/CommunityMemberV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/CommunityMemberV1ServiceDaoImplMapper.xml
index 5158db0..abb71ca 100644
--- a/java110-db/src/main/resources/mapper/community/CommunityMemberV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/CommunityMemberV1ServiceDaoImplMapper.xml
@@ -6,9 +6,9 @@
<!-- 淇濆瓨灏忓尯鎴愬憳淇℃伅 add by wuxw 2018-07-03 -->
<insert id="saveCommunityMemberInfo" parameterType="Map">
insert into s_community_member(
- member_type_cd,start_time,end_time,community_id,community_member_id,member_id
+ member_type_cd,start_time,end_time,community_id,community_member_id,member_id,audit_status_cd
) values (
- #{memberTypeCd},#{startTime},#{endTime},#{communityId},#{communityMemberId},#{memberId}
+ #{memberTypeCd},#{startTime},#{endTime},#{communityId},#{communityMemberId},#{memberId},#{auditStatusCd}
)
</insert>
@@ -17,7 +17,7 @@
<select id="getCommunityMemberInfo" parameterType="Map" resultType="Map">
select t.member_type_cd,t.member_type_cd memberTypeCd,t.status_cd,t.status_cd statusCd,t.start_time,t.start_time
startTime,t.end_time,t.end_time endTime,t.community_id,t.community_id
- communityId,t.community_member_id,t.community_member_id communityMemberId,t.member_id,t.member_id memberId
+ communityId,t.community_member_id,t.community_member_id communityMemberId,t.member_id,t.member_id memberId,t.audit_status_cd auditStatusCd
from s_community_member t
where 1 =1
<if test="memberTypeCd !=null and memberTypeCd != ''">
@@ -37,6 +37,9 @@
</if>
<if test="communityMemberId !=null and communityMemberId != ''">
and t.community_member_id= #{communityMemberId}
+ </if>
+ <if test="auditStatusCd !=null and auditStatusCd != ''">
+ and t.audit_status_cd= #{auditStatusCd}
</if>
<if test="memberId !=null and memberId != ''">
and t.member_id= #{memberId}
@@ -64,15 +67,19 @@
<if test="endTime !=null and endTime != ''">
, t.end_time= #{endTime}
</if>
- <if test="communityId !=null and communityId != ''">
- , t.community_id= #{communityId}
- </if>
+
<if test="communityMemberId !=null and communityMemberId != ''">
, t.community_member_id= #{communityMemberId}
+ </if>
+ <if test="auditStatusCd !=null and auditStatusCd != ''">
+ , t.audit_status_cd= #{auditStatusCd}
</if>
where 1=1
<if test="memberId !=null and memberId != ''">
and t.member_id= #{memberId}
+ </if>
+ <if test="communityId !=null and communityId != ''">
+ and t.community_id= #{communityId}
</if>
</update>
@@ -100,6 +107,9 @@
<if test="communityMemberId !=null and communityMemberId != ''">
and t.community_member_id= #{communityMemberId}
</if>
+ <if test="auditStatusCd !=null and auditStatusCd != ''">
+ and t.audit_status_cd= #{auditStatusCd}
+ </if>
<if test="memberId !=null and memberId != ''">
and t.member_id= #{memberId}
</if>
--
Gitblit v1.8.0