From 0e0e1f080d4a986ca75cde7cf5d23b2f8539fb10 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 17 五月 2023 12:25:35 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java
index afb02f6..5e2c996 100644
--- a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java
@@ -12,6 +12,7 @@
import org.springframework.web.bind.annotation.RequestMethod;
import java.util.List;
+import java.util.Map;
/**
* @ClassName IReportFeeStatisticsInnerServiceSMO
@@ -36,6 +37,7 @@
/**
* 鏌ヨ褰撴湀娆犺垂
+ *
* @param queryFeeStatisticsDto
* @return
*/
@@ -45,6 +47,7 @@
/**
* 鏌ヨ褰撴湀搴旀敹
+ *
* @param queryStatisticsDto
* @return
*/
@@ -62,6 +65,7 @@
/**
* 娆犺垂鎴锋暟
+ *
* @param queryStatisticsDto
* @return
*/
@@ -70,9 +74,33 @@
/**
* 鏌ヨ鏀惰垂鎴垮眿鏁�
+ *
* @param queryStatisticsDto
* @return
*/
@RequestMapping(value = "/getFeeRoomCount", method = RequestMethod.POST)
long getFeeRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 妤兼爧鏀惰垂鐜囦俊鎭粺璁�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/getFloorFeeSummary", method = RequestMethod.POST)
+ List<Map> getFloorFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 璐圭敤椤规敹璐圭巼缁熻
+ * @param queryStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/getConfigFeeSummary", method = RequestMethod.POST)
+ List<Map> getConfigFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+ @RequestMapping(value = "/getObjFeeSummaryCount", method = RequestMethod.POST)
+ int getObjFeeSummaryCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+ @RequestMapping(value = "/getObjFeeSummary", method = RequestMethod.POST)
+ List<Map> getObjFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto);
}
--
Gitblit v1.8.0