From f76a285fe0ab8466282f77b883c5136072d5a9d8 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期日, 16 七月 2023 01:59:07 +0800
Subject: [PATCH] 加入费用项变更记录
---
java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml
index 04e950b..d7dc66e 100644
--- a/java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/PayFeeConfigV1ServiceDaoImplMapper.xml
@@ -239,6 +239,9 @@
left join pay_fee_attrs pfa1 on t.fee_id = pfa1.fee_id and pfa1.status_cd = '0' and pfa1.spec_cd = '390008'
left join pay_fee_attrs pfa2 on t.fee_id = pfa2.fee_id and pfa2.status_cd = '0' and pfa2.spec_cd = '390009'
where t.config_id = #{configId}
+ <if test="payerObjType != null and payerObjType != ''">
+ and t.payer_obj_type= #{payerObjType}
+ </if>
and t.community_id= #{communityId}
</select>
@@ -252,6 +255,9 @@
left join pay_fee_attrs pfa2 on t.fee_id = pfa2.fee_id and pfa2.status_cd = '0' and pfa2.spec_cd = '390009'
where t.config_id = #{configId}
and t.community_id= #{communityId}
+ <if test="payerObjType != null and payerObjType != ''">
+ and t.payer_obj_type= #{payerObjType}
+ </if>
order by t.create_time desc
<if test="page != -1 and page != null ">
limit #{page}, #{row}
--
Gitblit v1.8.0