From b6987665e010050ca60b0404820faea59c831267 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期四, 25 五月 2023 11:44:58 +0800
Subject: [PATCH] 优化代码

---
 service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java |   70 +++++++++++++++++++++++++++++++++++
 1 files changed, 70 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 c2d78e6..839253b 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;
+
 /**
  * 鍩虹鎶ヨ〃缁熻 瀹炵幇绫�
  */
@@ -48,6 +51,8 @@
     }
 
 
+
+
     /**
      * 鏌ヨ 娆犺垂杩藉洖
      * @param queryFeeStatisticsDto
@@ -83,4 +88,69 @@
         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);
+    }
+
 }

--
Gitblit v1.8.0