From dd6687b118561100e1677e88a9c2f5842a54c531 Mon Sep 17 00:00:00 2001
From: jialh <1972868360@qq.com>
Date: 星期四, 16 四月 2026 18:14:14 +0800
Subject: [PATCH] 水电话费
---
java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml | 88 +++++++++++++++++++++++++++++--------------
1 files changed, 59 insertions(+), 29 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml b/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
index c9fee55..50f491e 100644
--- a/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/fee/PropertyWhiteListFlowDaoImplMapper.xml
@@ -9,6 +9,9 @@
<if test="roomId != null">room_id,</if>
<if test="propertyAddress != null">property_address,</if>
<if test="doorRoomNum != null">door_room_num,</if>
+ <if test="doorRoomNum != null">nong,</if>
+ <if test="doorRoomNum != null">men,</if>
+ <if test="doorRoomNum != null">shi,</if>
<if test="secondaryFeeTypeCd != null">secondary_fee_type_cd,</if>
<if test="chargeAmount != null">charge_amount,</if>
<if test="charger != null">charger,</if>
@@ -28,7 +31,7 @@
<if test="chargeStart != null">charge_start,</if>
<if test="chargeEnd != null">charge_end,</if>
<if test="communityId != null">community_id,</if>
- <if test="frequency != null">frequency</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>
@@ -40,6 +43,9 @@
<if test="roomId != null">#{roomId},</if>
<if test="propertyAddress != null">#{propertyAddress},</if>
<if test="doorRoomNum != null">#{doorRoomNum},</if>
+ <if test="doorRoomNum != null">SUBSTRING_INDEX(#{doorRoomNum}, '-', 1),</if>
+ <if test="doorRoomNum != null">SUBSTRING_INDEX(SUBSTRING_INDEX(#{doorRoomNum}, '-', 2), '-', -1),</if>
+ <if test="doorRoomNum != null">SUBSTRING_INDEX(#{doorRoomNum}, '-', -1),</if>
<if test="secondaryFeeTypeCd != null">#{secondaryFeeTypeCd},</if>
<if test="chargeAmount != null">#{chargeAmount},</if>
<if test="charger != null">#{charger},</if>
@@ -59,13 +65,14 @@
<if test="chargeStart != null">#{chargeStart},</if>
<if test="chargeEnd != null">#{chargeEnd},</if>
<if test="communityId != null">#{communityId},</if>
- <if test="frequency != null">#{frequency}</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">
SELECT
id,
@@ -74,9 +81,6 @@
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,
@@ -97,11 +101,22 @@
charge_end AS chargeEnd,
community_id AS communityId,
frequency,
+ receipt_year_month AS receiptYearMonth,
+ receipt_year AS receiptYear,
+ pending_problem AS pendingProblem,
+ room_number AS roomNumber,
+ financial_check AS financialCheck,
+ check_date AS checkDate,
+ nong,
+ men,
+ shi,
+ 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,
SUBSTRING_INDEX(frequency, '-', -1) as order_fre
FROM
property_white_list_flow
<where>
- <!-- 鏀惰垂鏃ユ湡鑼冨洿鏌ヨ -->
<if test="startChargeTime != null">
AND charge_time >= #{startChargeTime}
</if>
@@ -111,32 +126,24 @@
<if test="frequencyLike != null">
AND frequency like concat(#{frequencyLike},"%")
</if>
- <!-- 鎴垮彿鏌ヨ -->
<if test="roomId != null and roomId != ''">
AND room_id = #{roomId}
</if>
-
- <!-- 鏀惰垂鍐呭鏌ヨ -->
<if test="secondaryFeeTypeCd != null and secondaryFeeTypeCd != ''">
AND secondary_fee_type_cd = #{secondaryFeeTypeCd}
</if>
- <if test="invoice_receipt_no != null">
+ <if test="invoiceReceiptNo != null">
AND invoice_receipt_no = #{invoiceReceiptNo}
</if>
- <!-- 鏀惰垂閲戦鑼冨洿鏌ヨ -->
<if test="minChargeAmount != null">
AND charge_amount >= #{minChargeAmount}
</if>
<if test="maxChargeAmount != null">
AND charge_amount <= #{maxChargeAmount}
</if>
-
- <!-- 鍗曞彿鏌ヨ -->
<if test="orderNo != null and orderNo != ''">
AND order_no = #{orderNo}
</if>
-
- <!-- 杞︾墝鍙锋煡璇紙閫傜敤浜庡仠杞﹁垂绛夊満鏅級 -->
<if test="licensePlate != null and licensePlate != ''">
AND license_plate = #{licensePlate}
</if>
@@ -148,6 +155,21 @@
</if>
<if test="communityId != null and communityId != ''">
and community_id = #{communityId}
+ </if>
+ <if test="nong != null and nong != ''">
+ AND nong = #{nong}
+ </if>
+ <if test="men != null and men != ''">
+ AND men = #{men}
+ </if>
+ <if test="shi != null and shi != ''">
+ AND shi = #{shi}
+ </if>
+ <if test="financialCheck != null">
+ AND financial_check = #{financialCheck}
+ </if>
+ <if test="checkDate != null">
+ AND check_date = #{checkDate}
</if>
</where>
order by order_fre desc,door_room_num,secondary_fee_type_cd,charge_start
@@ -155,44 +177,35 @@
limit #{page}, #{row}
</if>
</select>
+
<select id="countPropertyWhiteListFlow" parameterType="Map" resultType="Map">
+
SELECT
count(1)
FROM
property_white_list_flow
<where>
- <!-- 鏀惰垂鏃ユ湡鑼冨洿鏌ヨ -->
<if test="startChargeTime != null">
AND charge_time >= #{startChargeTime}
</if>
<if test="endChargeTime != null">
AND charge_time <= #{endChargeTime}
</if>
-
- <!-- 鎴垮彿鏌ヨ -->
<if test="roomId != null and roomId != ''">
AND room_id = #{roomId}
</if>
-
- <!-- 鏀惰垂鍐呭鏌ヨ -->
<if test="secondaryFeeTypeCd != null and secondaryFeeTypeCd != ''">
AND secondary_fee_type_cd = #{secondaryFeeTypeCd}
</if>
-
- <!-- 鏀惰垂閲戦鑼冨洿鏌ヨ -->
<if test="minChargeAmount != null">
AND charge_amount >= #{minChargeAmount}
</if>
<if test="maxChargeAmount != null">
AND charge_amount <= #{maxChargeAmount}
</if>
-
- <!-- 鍗曞彿鏌ヨ -->
<if test="orderNo != null and orderNo != ''">
AND order_no = #{orderNo}
</if>
-
- <!-- 杞︾墝鍙锋煡璇紙閫傜敤浜庡仠杞﹁垂绛夊満鏅級 -->
<if test="licensePlate != null and licensePlate != ''">
AND license_plate = #{licensePlate}
</if>
@@ -205,8 +218,18 @@
<if test="communityId != null and communityId != ''">
and community_id = #{communityId}
</if>
+ <if test="nong != null and nong != ''">
+ AND nong = #{nong}
+ </if>
+ <if test="men != null and men != ''">
+ AND men = #{men}
+ </if>
+ <if test="shi != null and shi != ''">
+ AND shi = #{shi}
+ </if>
</where>
</select>
+
<select id="countPropertyWhiteListFlowFilter" parameterType="Map" resultType="Map">
SELECT
count(1)
@@ -240,12 +263,19 @@
<if test="chargeEnd != null">
AND charge_end = #{chargeEnd}
</if>
- <if test="communityId != null and communityId != ''">
- and community_id = #{communityId}
+ <if test="nong != null">
+ AND nong = #{nong}
+ </if>
+ <if test="men != null">
+ AND men = #{men}
+ </if>
+ <if test="shi != null">
+ AND shi = #{shi}
</if>
</where>
</select>
+
<update id="updatePropertyWhiteListFlow">
update property_white_list_flow set frequency = #{frequency} where id = #{id}
</update>
-</mapper>
+</mapper>
\ No newline at end of file
--
Gitblit v1.8.0