From 0b04f664887c73e90bf684a4e69c0fdbfe26349d Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 29 三月 2023 13:35:20 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity

---
 java110-db/src/main/resources/mapper/fee/FeePrintPageV1ServiceDaoImplMapper.xml |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/fee/FeePrintPageV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeePrintPageV1ServiceDaoImplMapper.xml
index 4cd1811..eaffb37 100644
--- a/java110-db/src/main/resources/mapper/fee/FeePrintPageV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeePrintPageV1ServiceDaoImplMapper.xml
@@ -60,16 +60,19 @@
         <if test="state !=null and state != ''">
             , t.state= #{state}
         </if>
-        <if test="communityId !=null and communityId != ''">
-            , t.community_id= #{communityId}
-        </if>
         <if test="pageName !=null and pageName != ''">
             , t.page_name= #{pageName}
         </if>
         where 1=1
+        <if test="queryStatusCd !=null and queryStatusCd != ''">
+            and t.status_cd= #{queryStatusCd}
+        </if>
         <if test="pageId !=null and pageId != ''">
             and t.page_id= #{pageId}
         </if>
+        <if test="communityId !=null and communityId != ''">
+            and t.community_id= #{communityId}
+        </if>
 
     </update>
 

--
Gitblit v1.8.0