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/IReportCommunityInnerServiceSMO.java | 41 +++++++++++++++++++++++++++++++++++++++--
1 files changed, 39 insertions(+), 2 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
index 1197d87..df01f86 100644
--- a/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java
@@ -1,8 +1,11 @@
package com.java110.intf.report;
import com.java110.config.feign.FeignConfiguration;
-import com.java110.dto.RoomDto;
+import com.java110.dto.fee.FeeConfigDto;
+import com.java110.dto.room.RoomDto;
+import com.java110.dto.fee.FeeDto;
import com.java110.dto.owner.OwnerCarDto;
+import com.java110.dto.owner.OwnerDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -18,7 +21,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("/reportCommunityApi")
public interface IReportCommunityInnerServiceSMO {
@@ -64,4 +67,38 @@
*/
@RequestMapping(value = "/queryHisOwnerCars", method = RequestMethod.POST)
List<OwnerCarDto> queryHisOwnerCars(@RequestBody OwnerCarDto ownerCarDto);
+
+ @RequestMapping(value = "/queryHisOwnerCount", method = RequestMethod.POST)
+ int queryHisOwnerCount(@RequestBody OwnerDto ownerDto);
+
+ @RequestMapping(value = "/queryHisOwners", method = RequestMethod.POST)
+ List<OwnerDto> queryHisOwners(@RequestBody OwnerDto ownerDto);
+
+ @RequestMapping(value = "/queryHisFeeCount", method = RequestMethod.POST)
+ int queryHisFeeCount(@RequestBody FeeDto feeDto);
+
+ @RequestMapping(value = "/queryHisFees", method = RequestMethod.POST)
+ List<FeeDto> queryHisFees(@RequestBody FeeDto feeDto);
+
+ /**
+ * 鏌ヨ璐圭敤椤规暟閲�
+ * @param feeDto
+ * @return
+ */
+ @RequestMapping(value = "/queryHisFeeConfigCount", method = RequestMethod.POST)
+ int queryHisFeeConfigCount(@RequestBody FeeConfigDto feeDto);
+
+ /**
+ * 鏌ヨ璐圭敤椤�
+ * @param feeDto
+ * @return
+ */
+ @RequestMapping(value = "/queryHisFeeConfigs", method = RequestMethod.POST)
+ List<FeeConfigDto> queryHisFeeConfigs(@RequestBody FeeConfigDto feeDto);
+
+ @RequestMapping(value = "/queryHisRoomCount", method = RequestMethod.POST)
+ int queryHisRoomCount(@RequestBody RoomDto roomDto);
+
+ @RequestMapping(value = "/queryHisRooms", method = RequestMethod.POST)
+ List<RoomDto> queryHisRooms(@RequestBody RoomDto roomDto);
}
--
Gitblit v1.8.0