From 8478e0fc582d5d2baaf0d728e7313eac2ba5ceac Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 02 十一月 2023 22:35:40 +0800
Subject: [PATCH] 加入数据导入框架

---
 java110-db/src/main/resources/mapper/report/BaseDataStatisticsServiceDaoImplMapper.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/report/BaseDataStatisticsServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/report/BaseDataStatisticsServiceDaoImplMapper.xml
index 36366ce..98f4b5a 100644
--- a/java110-db/src/main/resources/mapper/report/BaseDataStatisticsServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/report/BaseDataStatisticsServiceDaoImplMapper.xml
@@ -485,23 +485,23 @@
         select max(pay_fee_time) from pay_fee_detail_month pfdm
         where pfdm.config_id = pfc.config_id and pfdm.obj_id = br.room_id
         and pfdm.status_cd = '0' and pfdm.detail_id != '-1'
-        and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTIme}
+        and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTime}
         ) payFeeTime,
         (
         select sum(pfdm.receivable_amount) from pay_fee_detail_month pfdm
         where pfdm.config_id = pfc.config_id
         and pfdm.obj_id = br.room_id
-        and pfdm.status_cd = '0' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTIme}
+        and pfdm.status_cd = '0' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTime}
         ) receivableAmount,
         (
         select sum(pfdm.received_amount) from pay_fee_detail_month pfdm
         where pfdm.config_id = pfc.config_id and pfdm.obj_id = br.room_id
-        and pfdm.status_cd = '0' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTIme}
+        and pfdm.status_cd = '0' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTime}
         ) receivedAmount,
         (
         select sum(pfdm.receivable_amount) from pay_fee_detail_month pfdm
         where pfdm.config_id = pfc.config_id and pfdm.obj_id = br.room_id
-        and pfdm.status_cd = '0' and pfdm.detail_id = '-1' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTIme}
+        and pfdm.status_cd = '0' and pfdm.detail_id = '-1' and pfdm.cur_month_time &gt;=#{startTime} and pfdm.cur_month_time &lt; #{endTime}
         ) oweAmount
         from building_room br
         left join building_unit bu on br.unit_id = br.unit_id and bu.status_cd = '0'

--
Gitblit v1.8.0