From 75cbaa2d0ce62ea8f6752a917627591ab918ab22 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期一, 20 六月 2022 17:36:02 +0800
Subject: [PATCH] 1、缴费积分抵扣从小区设置里面配置并且进行抵扣2、抵扣明细3、超时相关bug
---
java110-db/src/main/resources/mapper/fee/FeePrintSpecServiceDaoImplMapper.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/FeePrintSpecServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/FeePrintSpecServiceDaoImplMapper.xml
index a8deae8..e931057 100755
--- a/java110-db/src/main/resources/mapper/fee/FeePrintSpecServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/FeePrintSpecServiceDaoImplMapper.xml
@@ -54,7 +54,7 @@
<if test="newBId != null and newBId != ''">
,t.b_id = #{newBId}
</if>
- <if test="content !=null and content != ''">
+ <if test="content !=null">
, t.content= #{content}
</if>
<if test="specCd !=null and specCd != ''">
@@ -63,7 +63,7 @@
<if test="communityId !=null and communityId != ''">
, t.community_id= #{communityId}
</if>
- <if test="qrImg !=null and qrImg != ''">
+ <if test="qrImg !=null">
, t.qr_img= #{qrImg}
</if>
<if test="printName !=null and printName != ''">
--
Gitblit v1.8.0