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/IReportCommunityInnerServiceSMO.java | 28 ++++++++++++++++++++++++++--
1 files changed, 26 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 ebd74a6..29d7ef1 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,7 +1,9 @@
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;
@@ -19,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 {
@@ -71,4 +73,26 @@
@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);
}
--
Gitblit v1.8.0