From 7606c7f9a479ddacbcb915b317c5c6a76d3975ff Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 31 五月 2023 13:21:03 +0800
Subject: [PATCH] optimize dining
---
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java | 137 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 137 insertions(+), 0 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java b/service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
index 2bdbd3c..d8e0081 100644
--- a/service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
+++ b/service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -6,6 +6,9 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
+import java.util.List;
+import java.util.Map;
+
/**
* 鍩虹鎶ヨ〃缁熻 瀹炵幇绫�
*/
@@ -35,6 +38,29 @@
public double getCurMonthOweFee(QueryStatisticsDto queryFeeStatisticsDto) {
return reportFeeStatisticsInnerServiceSMOImpl.getCurMonthOweFee(queryFeeStatisticsDto);
}
+
+ /**
+ * 鏌ヨ鎬绘瑺璐�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getOweFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getOweFee(queryStatisticsDto);
+ }
+
+
+ /**
+ * 鏌ヨ褰撴湀搴旀敹
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getCurReceivableFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getCurReceivableFee(queryStatisticsDto);
+ }
+
+
/**
@@ -71,4 +97,115 @@
public int getOweRoomCount(QueryStatisticsDto queryStatisticsDto) {
return reportFeeStatisticsInnerServiceSMOImpl.getOweRoomCount(queryStatisticsDto);
}
+
+ @Override
+ public long getFeeRoomCount(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getFeeRoomCount(queryStatisticsDto);
+ }
+
+ /**
+ * 妤兼爧鏀惰垂鐜囦俊鎭粺璁�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getFloorFeeSummary(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getFloorFeeSummary(queryStatisticsDto);
+ }
+
+ /**
+ * 璐圭敤椤规敹璐圭巼淇℃伅缁熻
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getConfigFeeSummary(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getConfigFeeSummary(queryStatisticsDto);
+ }
+
+ @Override
+ public int getObjFeeSummaryCount(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getObjFeeSummaryCount(queryStatisticsDto);
+ }
+
+ @Override
+ public List<Map> getObjFeeSummary(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getObjFeeSummary(queryStatisticsDto);
+ }
+
+ /**
+ * 鏌ヨ 涓氫富鏄庣粏琛�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getOwnerFeeSummary(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getOwnerFeeSummary(queryStatisticsDto);
+ }
+
+ /**
+ * 浼樻儬閲戦
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getDiscountFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getDiscountFee(queryStatisticsDto);
+ }
+
+ /**
+ * 婊炵撼閲�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getLateFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getLateFee(queryStatisticsDto);
+ }
+
+ @Override
+ public double getPrestoreAccount(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getPrestoreAccount(queryStatisticsDto);
+ }
+
+ @Override
+ public double getWithholdAccount(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getWithholdAccount(queryStatisticsDto);
+ }
+
+ /**
+ * 鏌ヨ涓存椂杞︽敹鍏�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getTempCarFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getTempCarFee(queryStatisticsDto);
+ }
+
+ @Override
+ public double geRefundDeposit(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.geRefundDeposit(queryStatisticsDto);
+ }
+
+ @Override
+ public double geRefundOrderCount(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.geRefundOrderCount(queryStatisticsDto);
+ }
+
+ @Override
+ public double geRefundFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.geRefundFee(queryStatisticsDto);
+ }
+
+ @Override
+ public double getChargeFee(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getChargeFee(queryStatisticsDto);
+ }
+
+ @Override
+ public List<Map> getReceivedFeeByFloor(QueryStatisticsDto queryStatisticsDto) {
+ return reportFeeStatisticsInnerServiceSMOImpl.getReceivedFeeByFloor(queryStatisticsDto);
+ }
+
}
--
Gitblit v1.8.0