From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-db/src/main/resources/mapper/fee/FeeAttrServiceDaoImplMapper.xml | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/FeeAttrServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeeAttrServiceDaoImplMapper.xml
index e02e6bc..5f092f1 100755
--- a/java110-db/src/main/resources/mapper/fee/FeeAttrServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeeAttrServiceDaoImplMapper.xml
@@ -121,15 +121,6 @@
<if test="newBId != null and newBId != ''">
,t.b_id = #{newBId}
</if>
- <if test="specCd !=null and specCd != ''">
- , t.spec_cd= #{specCd}
- </if>
- <if test="communityId !=null and communityId != ''">
- , t.community_id= #{communityId}
- </if>
- <if test="feeId !=null and feeId != ''">
- , t.fee_id= #{feeId}
- </if>
<if test="value !=null and value != ''">
, t.value= #{value}
</if>
@@ -140,6 +131,15 @@
<if test="bId !=null and bId != ''">
and t.b_id= #{bId}
</if>
+ <if test="specCd !=null and specCd != ''">
+ and t.spec_cd= #{specCd}
+ </if>
+ <if test="communityId !=null and communityId != ''">
+ and t.community_id= #{communityId}
+ </if>
+ <if test="feeId !=null and feeId != ''">
+ and t.fee_id= #{feeId}
+ </if>
</update>
--
Gitblit v1.8.0