From e144b12f3cf3460bb726b5c47f91ab359f073d47 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期四, 01 六月 2023 10:02:43 +0800
Subject: [PATCH] 优化就餐

---
 service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java |  131 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 129 insertions(+), 2 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 36cfd35..aebbbf8 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
@@ -31,6 +31,7 @@
 
     /**
      * 鏌ヨ 褰撴湀娆犺垂
+     *
      * @param queryFeeStatisticsDto
      * @return
      */
@@ -39,9 +40,21 @@
         return reportFeeStatisticsInnerServiceSMOImpl.getCurMonthOweFee(queryFeeStatisticsDto);
     }
 
+    /**
+     * 鏌ヨ鎬绘瑺璐�
+     *
+     * @param queryStatisticsDto
+     * @return
+     */
+    @Override
+    public double getOweFee(QueryStatisticsDto queryStatisticsDto) {
+        return reportFeeStatisticsInnerServiceSMOImpl.getOweFee(queryStatisticsDto);
+    }
+
 
     /**
      * 鏌ヨ褰撴湀搴旀敹
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -51,10 +64,9 @@
     }
 
 
-
-
     /**
      * 鏌ヨ 娆犺垂杩藉洖
+     *
      * @param queryFeeStatisticsDto
      * @return
      */
@@ -65,6 +77,7 @@
 
     /**
      * 鏌ヨ 棰勪氦璐圭敤
+     *
      * @param queryFeeStatisticsDto
      * @return
      */
@@ -75,6 +88,7 @@
 
     /**
      * 鏌ヨ 瀹炴敹璐圭敤
+     *
      * @param queryFeeStatisticsDto
      * @return
      */
@@ -95,6 +109,7 @@
 
     /**
      * 妤兼爧鏀惰垂鐜囦俊鎭粺璁�
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -105,6 +120,7 @@
 
     /**
      * 璐圭敤椤规敹璐圭巼淇℃伅缁熻
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -113,4 +129,115 @@
         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);
+    }
+
+    /**
+     * 鏀舵鏂瑰紡缁熻
+     *
+     * @param queryStatisticsDto
+     * @return
+     */
+    @Override
+    public List<Map> getReceivedFeeByPrimeRate(QueryStatisticsDto queryStatisticsDto) {
+        return reportFeeStatisticsInnerServiceSMOImpl.getReceivedFeeByPrimeRate(queryStatisticsDto);
+    }
+
+    /**
+     * 鏍规嵁妤兼爧鏌ヨ娆犺垂淇℃伅
+     *
+     * @param queryStatisticsDto
+     * @return
+     */
+    @Override
+    public List<Map> getOweFeeByFloor(QueryStatisticsDto queryStatisticsDto) {
+        return reportFeeStatisticsInnerServiceSMOImpl.getOweFeeByFloor(queryStatisticsDto);
+    }
+
 }

--
Gitblit v1.8.0