From b6184e2ddf3db37a94f7efb3b619bbc64642a292 Mon Sep 17 00:00:00 2001
From: chengf <cgf12138@163.com>
Date: 星期二, 27 一月 2026 18:12:48 +0800
Subject: [PATCH] Z四
---
java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
index 5753193..c9fee55 100644
--- a/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
@@ -29,6 +29,10 @@
<if test="chargeEnd != null">charge_end,</if>
<if test="communityId != null">community_id,</if>
<if test="frequency != null">frequency</if>
+ <if test="receiptYearMonth != null">receipt_year_month,</if>
+ <if test="receiptYear != null">receipt_year,</if>
+ <if test="pendingProblem != null">pending_problem,</if>
+ <if test="roomNumber != null">room_number</if>
</trim> VALUES
<trim prefix="(" suffix=")" suffixOverrides=",">
#{chargeTime},
@@ -56,6 +60,10 @@
<if test="chargeEnd != null">#{chargeEnd},</if>
<if test="communityId != null">#{communityId},</if>
<if test="frequency != null">#{frequency}</if>
+ <if test="receiptYearMonth != null">#{receiptYearMonth},</if>
+ <if test="receiptYear != null">#{receiptYear},</if>
+ <if test="pendingProblem != null">#{pendingProblem},</if>
+ <if test="roomNumber != null">#{roomNumber}</if>
</trim>
</insert>
<select id="queryPropertyWhiteListFlow" parameterType="Map" resultType="Map">
@@ -66,6 +74,9 @@
room_id AS roomId,
property_address AS propertyAddress,
door_room_num AS doorRoomNum,
+ SUBSTRING_INDEX(door_room_num, '-', 1) AS floorNum,
+ SUBSTRING_INDEX(SUBSTRING_INDEX(door_room_num, '-', 2), '-', -1) AS unitNum,
+ SUBSTRING_INDEX(door_room_num, '-', -1) AS roomNum,
secondary_fee_type_cd AS secondaryFeeTypeCd,
charge_amount AS chargeAmount,
charger,
--
Gitblit v1.8.0