From 55c346cd82b1b7b3b1462aac9f52603522484aa1 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 01 六月 2021 17:00:33 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java b/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java
old mode 100644
new mode 100755
index a10f940..6ccf1db
--- a/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java
+++ b/service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java
@@ -402,5 +402,29 @@
return businessReportFeeMonthStatisticsInfos;
}
+ @Override
+ public int queryNoFeeRoomsCount(Map info) {
+ logger.debug("鏌ヨ鏈敹璐规埧灞嬬粺璁℃暟鎹� 鍏ュ弬 info : {}", info);
+
+ List<Map> roomInfos =
+ sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryNoFeeRoomsCount", info);
+ if (roomInfos.size() < 1) {
+ return 0;
+ }
+
+ return Integer.parseInt(roomInfos.get(0).get("count").toString());
+ }
+
+ @Override
+ public List<Map> queryNoFeeRooms(Map info) {
+ logger.debug("鏌ヨ鏈敹璐规埧灞嬬粺璁′俊鎭� 鍏ュ弬 info : {}", info);
+
+ List<Map> roomInfos =
+ sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryNoFeeRooms", info);
+
+ return roomInfos;
+ }
+
+
}
--
Gitblit v1.8.0