From 547597b1c6a94f6f8e8bae670f102a1f41ffa719 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 02 六月 2023 10:02:54 +0800
Subject: [PATCH] 优化 收费情况统计
---
service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 155 insertions(+), 0 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java b/service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java
index 04f1ad1..058868b 100644
--- a/service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java
+++ b/service-report/src/main/java/com/java110/report/statistics/IFeeStatistics.java
@@ -26,6 +26,14 @@
*/
double getCurMonthOweFee(QueryStatisticsDto queryFeeStatisticsDto);
+ /**
+ * 鏌ヨ娆犺垂
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getOweFee(QueryStatisticsDto queryStatisticsDto);
+
/**
* 娆犺垂杩藉洖
@@ -63,6 +71,7 @@
/**
* 鏌ヨ鏀惰垂鎴垮眿鏁�
+ *
* @param queryStatisticsDto
* @return
*/
@@ -70,8 +79,154 @@
/**
* 鏌ヨ妤兼爧璐圭敤缁熻淇℃伅
+ *
* @param queryStatisticsDto
* @return
*/
List<Map> getFloorFeeSummary(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 璐圭敤椤� 璐圭敤缁熻淇℃伅
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getConfigFeeSummary(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ瀵硅薄鏄庣粏琛紙鏁伴噺锛�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ int getObjFeeSummaryCount(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ瀵硅薄鏄庣粏琛�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getObjFeeSummary(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ涓氫富瀵硅薄鏄庣粏琛�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getOwnerFeeSummary(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 浼樻儬閲戦
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getDiscountFee(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 婊炵撼閲�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getLateFee(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 棰勫瓨璐︽埛
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getPrestoreAccount(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鎵f璐︽埛
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getWithholdAccount(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ涓存椂杞﹁垂鐢ㄦ敹鍏�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getTempCarFee(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ閫�娆炬娂閲�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double geRefundDeposit(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 閫�娆捐鍗曟暟
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double geRefundOrderCount(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 閫�娆鹃噾棰�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double geRefundFee(QueryStatisticsDto queryStatisticsDto);
+
+
+ /**
+ * 鍏呯數妗╁厖鐢甸噾棰�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ double getChargeFee(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鎸夋ゼ鏍嬭绠楀疄鏀�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getReceivedFeeByFloor(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏌ヨ 鏀舵鏂瑰紡缁熻
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getReceivedFeeByPrimeRate(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 鏍规嵁妤兼爧鏌ヨ娆犺垂淇℃伅
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getOweFeeByFloor(QueryStatisticsDto queryStatisticsDto);
+
+ /**
+ * 璁$畻瀵硅薄娆犺垂鏄庣粏
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ List<Map> getObjOweFee(QueryStatisticsDto queryStatisticsDto);
+
+ long getReceivedRoomCount(QueryStatisticsDto queryStatisticsDto);
+
+ double getReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto);
+
+ long getHisOweReceivedRoomCount(QueryStatisticsDto queryStatisticsDto);
+
+ double getHisOweReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto);
}
--
Gitblit v1.8.0