From 19730d0d994372d3bc4460b69ac53fc3a8bcb941 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 26 七月 2023 14:22:03 +0800
Subject: [PATCH] 调整为微服务版
---
java110-interface/src/main/java/com/java110/intf/report/IReportFeeStatisticsInnerServiceSMO.java | 22 ++++++++++++++++++----
1 files changed, 18 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 040dae5..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;
@@ -244,4 +240,22 @@
@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