From b8e7bb1791ff41be5ee8150cc46af082d7444a65 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期三, 31 五月 2023 01:02:29 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
java110-interface/src/main/java/com/java110/intf/report/IReportCommunityInnerServiceSMO.java | 31 ++++++++++++++++++++++++++++++-
1 files changed, 30 insertions(+), 1 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 4ce0b11..dbd6a7b 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
@@ -2,7 +2,9 @@
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 org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -18,7 +20,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 {
@@ -49,4 +51,31 @@
@RequestMapping(value = "/queryRoomsTree", method = RequestMethod.POST)
List<RoomDto> queryRoomsTree(@RequestBody RoomDto roomDto);
+ /**
+ * 鏌ヨ杞﹁締鍙樻洿鎬绘暟
+ * @param ownerCarDto
+ * @return
+ */
+ @RequestMapping(value = "/queryHisOwnerCarCount", method = RequestMethod.POST)
+ int queryHisOwnerCarCount(@RequestBody OwnerCarDto ownerCarDto);
+
+ /**
+ * 鏌ヨ杞﹁締鍙樻洿
+ * @param ownerCarDto
+ * @return
+ */
+ @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);
}
--
Gitblit v1.8.0