From 20001a775126c1be95a2b84cebb8813a54608712 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 15 八月 2023 14:42:27 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity

---
 java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java |   86 +++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 82 insertions(+), 4 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 9175b57..61eed8c 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
@@ -1,10 +1,6 @@
 package com.java110.intf.report;
 
 import com.java110.config.feign.FeignConfiguration;
-import com.java110.dto.RoomDto;
-import com.java110.dto.fee.FeeDto;
-import com.java110.dto.owner.OwnerCarDto;
-import com.java110.dto.owner.OwnerDto;
 import com.java110.dto.report.QueryStatisticsDto;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -46,6 +42,7 @@
 
     /**
      * 鏌ヨ娆犺垂閲戦
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -99,6 +96,7 @@
 
     /**
      * 璐圭敤椤规敹璐圭巼缁熻
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -113,6 +111,7 @@
 
     /**
      * 涓氫富鏄庣粏琛�
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -121,6 +120,7 @@
 
     /**
      * 浼樻儬璐圭敤
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -129,6 +129,7 @@
 
     /**
      * 婊炵撼閲�
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -137,6 +138,7 @@
 
     /**
      * 鏌ヨ棰勫瓨閲戦
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -145,6 +147,7 @@
 
     /**
      * 鏌ヨ鎵f閲戦
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -153,6 +156,7 @@
 
     /**
      * 鏌ヨ涓存椂杞︽敹鍏�
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -161,6 +165,7 @@
 
     /**
      * 鏌ヨ閫�娆炬娂閲�
+     *
      * @param queryStatisticsDto
      * @return
      */
@@ -175,9 +180,82 @@
 
     /**
      * 鏌ヨ鍏呯數妗� 鍏呯數閲戦
+     *
      * @param queryStatisticsDto
      * @return
      */
     @RequestMapping(value = "/getChargeFee", method = RequestMethod.POST)
     double getChargeFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    /**
+     * 鏌ヨ妤兼爧瀹炴敹缁熻
+     *
+     * @param queryStatisticsDto
+     * @return
+     */
+    @RequestMapping(value = "/getReceivedFeeByFloor", method = RequestMethod.POST)
+    List<Map> getReceivedFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getReceivedFeeByPrimeRate", method = RequestMethod.POST)
+    List<Map> getReceivedFeeByPrimeRate(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    /**
+     * 鏍规嵁妤兼爧鏌ヨ娆犺垂淇℃伅
+     *
+     * @param queryStatisticsDto
+     * @return
+     */
+    @RequestMapping(value = "/getOweFeeByFloor", method = RequestMethod.POST)
+    List<Map> getOweFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getObjOweFee", method = RequestMethod.POST)
+    List<Map> getObjOweFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    /**
+     * 鏌ヨ褰撴棩 鎴栬�呭綋鏈堝凡鏀舵埧灞嬫暟
+     * @param queryStatisticsDto
+     * @return
+     */
+    @RequestMapping(value = "/getReceivedRoomCount", method = RequestMethod.POST)
+    long getReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    /**
+     * 鏌ヨ褰撴棩 鎴栬�呭綋鏈堝凡鏀堕噾棰�
+     * @param queryStatisticsDto
+     * @return
+     */
+    @RequestMapping(value = "/getReceivedRoomAmount", method = RequestMethod.POST)
+    double getReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    /**
+     * 鏌ヨ鍘嗗彶娆犺垂 娓呯即鎴�
+     * @param queryStatisticsDto
+     * @return
+     */
+    @RequestMapping(value = "/getHisOweReceivedRoomCount", method = RequestMethod.POST)
+    long getHisOweReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getHisOweReceivedRoomAmount", method = RequestMethod.POST)
+    double getHisOweReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getObjReceivedFee", method = RequestMethod.POST)
+    List<Map> getObjReceivedFee(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthReceivedDetailCount", method = RequestMethod.POST)
+    long getMonthReceivedDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthReceivedDetailInfo", method = RequestMethod.POST)
+    List<Map> getMonthReceivedDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthOweDetailCount", method = RequestMethod.POST)
+    long getMonthOweDetailCount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthOweDetailInfo", method = RequestMethod.POST)
+    List<Map> getMonthOweDetailInfo(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthOweDetailAmount", method = RequestMethod.POST)
+    double getMonthOweDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
+
+    @RequestMapping(value = "/getMonthReceivedDetailAmount", method = RequestMethod.POST)
+    double getMonthReceivedDetailAmount(@RequestBody QueryStatisticsDto queryStatisticsDto);
 }

--
Gitblit v1.8.0