From 18d1f4bc4f4f77c8883702a00896dd99469db648 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 25 八月 2023 16:06:37 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java | 52 +++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 47 insertions(+), 5 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java
index 8dc8306..8ffc01a 100755
--- a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeMonthStatisticsInnerServiceSMO.java
@@ -2,13 +2,13 @@
import com.alibaba.fastjson.JSONObject;
import com.java110.config.feign.FeignConfiguration;
-import com.java110.dto.RoomDto;
+import com.java110.dto.room.RoomDto;
import com.java110.dto.fee.FeeConfigDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.repair.RepairUserDto;
import com.java110.dto.report.ReportDeposit;
-import com.java110.dto.reportFeeMonthStatistics.ReportFeeMonthStatisticsDto;
-import com.java110.po.reportFeeMonthStatistics.ReportFeeMonthStatisticsPo;
+import com.java110.dto.reportFee.ReportFeeMonthStatisticsDto;
+import com.java110.po.reportFee.ReportFeeMonthStatisticsPo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -25,7 +25,7 @@
* @Version 1.0
* add by wuxw 2019/4/24
**/
-@FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class})
+@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
@RequestMapping("/reportFeeMonthStatisticsApi")
public interface IReportFeeMonthStatisticsInnerServiceSMO {
@@ -121,6 +121,25 @@
@RequestMapping(value = "/queryReportFloorUnitFeeSummary", method = RequestMethod.POST)
List<ReportFeeMonthStatisticsDto> queryReportFloorUnitFeeSummary(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+ /**
+ * 鏌ヨ璐圭敤姹囨�昏〃涓暟
+ *
+ * @param reportFeeMonthStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/queryReportFloorUnitFeeSummaryDetailCount", method = RequestMethod.POST)
+ int queryReportFloorUnitFeeSummaryDetailCount(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
+ /**
+ * 鏌ヨ璐圭敤姹囨�昏〃
+ *
+ * @param reportFeeMonthStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/queryReportFloorUnitFeeDetailSummary", method = RequestMethod.POST)
+ List<ReportFeeMonthStatisticsDto> queryReportFloorUnitFeeDetailSummary(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
+
@RequestMapping(value = "/queryReportFloorUnitFeeSummaryMajor", method = RequestMethod.POST)
ReportFeeMonthStatisticsDto queryReportFloorUnitFeeSummaryMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
@@ -141,6 +160,25 @@
*/
@RequestMapping(value = "/queryFeeBreakdown", method = RequestMethod.POST)
List<ReportFeeMonthStatisticsDto> queryFeeBreakdown(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
+ /**
+ * 鏌ヨ璐圭敤姹囨�昏〃涓暟
+ *
+ * @param reportFeeMonthStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/queryFeeBreakdownDetailCount", method = RequestMethod.POST)
+ int queryFeeBreakdownDetailCount(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
+ /**
+ * 鏌ヨ璐圭敤姹囨�昏〃
+ *
+ * @param reportFeeMonthStatisticsDto
+ * @return
+ */
+ @RequestMapping(value = "/queryFeeBreakdownDetail", method = RequestMethod.POST)
+ List<ReportFeeMonthStatisticsDto> queryFeeBreakdownDetail(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
@RequestMapping(value = "/queryFeeBreakdownMajor", method = RequestMethod.POST)
ReportFeeMonthStatisticsDto queryFeeBreakdownMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
@@ -210,6 +248,7 @@
@RequestMapping(value = "/queryOweFeeDetailMajor", method = RequestMethod.POST)
ReportFeeMonthStatisticsDto queryOweFeeDetailMajor(@RequestBody ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto);
+
/**
* 鏌ヨ璐圭敤姹囨�昏〃涓暟
*
@@ -375,6 +414,7 @@
/**
* 鏌ヨ鍗庡畞鐗╀笟 娆犺垂鎬绘暟
+ *
* @param reportFeeMonthStatisticsDto
* @return
*/
@@ -383,6 +423,7 @@
/**
* 鏌ヨ鍗庡畞鐗╀笟 娆犺垂鏄庣粏 鎸夋ゼ鏍� group by
+ *
* @param reportFeeMonthStatisticsDto
* @return
*/
@@ -408,10 +449,11 @@
List<Map> queryHuaningOweFeeDetail(@RequestBody Map paramInfo);
/**
- *
* @param ownerDto
* @return
*/
@RequestMapping(value = "/queryRoomAndParkingSpace", method = RequestMethod.POST)
List<OwnerDto> queryRoomAndParkingSpace(@RequestBody OwnerDto ownerDto);
+
+
}
--
Gitblit v1.8.0