From 58ada741b40cd6ebd590b777c18d0f77548e043b Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 25 七月 2019 14:16:53 +0800
Subject: [PATCH] 注册组件调整
---
java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml | 26 ++++++++++++++++++++++----
1 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml
index 1ac02f2..a3448c4 100644
--- a/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeeServiceDaoImplMapper.xml
@@ -113,7 +113,13 @@
</if>
<if test="feeTypeCd !=null and feeTypeCd != ''">
and t.fee_type_cd= #{feeTypeCd}
-</if>
+</if>
+<if test="feeTypeCds != null ">
+ and t.fee_type_cd in
+ <foreach collection="feeTypeCds" item="item" open="(" close=")" separator=",">
+ #{item}
+ </foreach>
+</if>
<if test="startTime !=null ">
and t.start_time= #{startTime}
</if>
@@ -122,7 +128,10 @@
</if>
<if test="endTime !=null ">
and t.end_time= #{endTime}
-</if>
+</if>
+<if test="arrearsEndTime != null">
+ and t.end_time < #{arrearsEndTime}
+</if>
<if test="communityId !=null and communityId != ''">
and t.community_id= #{communityId}
</if>
@@ -199,7 +208,13 @@
</if>
<if test="feeTypeCd !=null and feeTypeCd != ''">
and t.fee_type_cd= #{feeTypeCd}
-</if>
+</if>
+ <if test="feeTypeCds != null ">
+ and t.fee_type_cd in
+ <foreach collection="feeTypeCds" item="item" open="(" close=")" separator=",">
+ #{item}
+ </foreach>
+ </if>
<if test="startTime !=null">
and t.start_time= #{startTime}
</if>
@@ -208,7 +223,10 @@
</if>
<if test="endTime !=null ">
and t.end_time= #{endTime}
-</if>
+</if>
+ <if test="arrearsEndTime != null">
+ and t.end_time < #{arrearsEndTime}
+ </if>
<if test="communityId !=null and communityId != ''">
and t.community_id= #{communityId}
</if>
--
Gitblit v1.8.0