From cc717a7a9817179d6c18a0f085271992f5635ddf Mon Sep 17 00:00:00 2001
From: chengf <2156125618@qq.com>
Date: 星期三, 16 七月 2025 18:15:14 +0800
Subject: [PATCH] 导入房产添加字段、代码优化2025/07/16
---
java110-db/src/main/resources/mapper/fee/ImportFeeDetailServiceDaoImplMapper.xml | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/ImportFeeDetailServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/ImportFeeDetailServiceDaoImplMapper.xml
index 8abe6e9..9ff5713 100755
--- a/java110-db/src/main/resources/mapper/fee/ImportFeeDetailServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/ImportFeeDetailServiceDaoImplMapper.xml
@@ -32,6 +32,9 @@
<if test="unitNum !=null and unitNum != ''">
and t.unit_num= #{unitNum}
</if>
+ <if test="unitName !=null and unitName != ''">
+ and t.unit_name= #{unitName}
+ </if>
<if test="statusCd !=null and statusCd != ''">
and t.status_cd= #{statusCd}
</if>
@@ -97,6 +100,9 @@
<if test="unitNum !=null and unitNum != ''">
, t.unit_num= #{unitNum}
</if>
+ <if test="unitName!=null and unitName != ''">
+ , t.unit_name= #{unitName}
+ </if>
<if test="feeId !=null and feeId != ''">
, t.fee_id= #{feeId}
</if>
@@ -142,6 +148,9 @@
<if test="unitNum !=null and unitNum != ''">
and t.unit_num= #{unitNum}
</if>
+ <if test="unitName !=null and unitName != ''">
+ and t.unit_name= #{unitName}
+ </if>
<if test="statusCd !=null and statusCd != ''">
and t.status_cd= #{statusCd}
</if>
--
Gitblit v1.8.0