From 8f61316069a6ffffb0998ed3f498bd4e3acc77e4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 10 五月 2022 11:36:15 +0800
Subject: [PATCH] 优化 费用

---
 java110-interface/src/main/java/com/java110/intf/report/IReportFeeYearCollectionInnerServiceSMO.java |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeYearCollectionInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeYearCollectionInnerServiceSMO.java
old mode 100644
new mode 100755
index 2abd6b5..c313c60
--- a/java110-interface/src/main/java/com/java110/intf/report/IReportFeeYearCollectionInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/report/IReportFeeYearCollectionInnerServiceSMO.java
@@ -9,6 +9,7 @@
 import org.springframework.web.bind.annotation.RequestMethod;
 
 import java.util.List;
+import java.util.Map;
 
 /**
  * @ClassName IReportFeeYearCollectionInnerServiceSMO
@@ -18,7 +19,7 @@
  * @Version 1.0
  * add by wuxw 2019/4/24
  **/
-@FeignClient(name = "report-service", configuration = {FeignConfiguration.class})
+@FeignClient(name = "${java110.report-service}", configuration = {FeignConfiguration.class})
 @RequestMapping("/reportFeeYearCollectionApi")
 public interface IReportFeeYearCollectionInnerServiceSMO {
 
@@ -50,4 +51,10 @@
      */
     @RequestMapping(value = "/queryReportFeeYearCollectionsCount", method = RequestMethod.POST)
     int queryReportFeeYearCollectionsCount(@RequestBody ReportFeeYearCollectionDto reportFeeYearCollectionDto);
+
+    @RequestMapping(value = "/getReportFeeYearCollectionInfo", method = RequestMethod.POST)
+    List<Map> getReportFeeYearCollectionInfo(@RequestBody Map beanCovertMap);
+
+    @RequestMapping(value = "/saveReportFeeYearCollectionInfo", method = RequestMethod.POST)
+    void saveReportFeeYearCollectionInfo(@RequestBody Map beanCovertMap);
 }

--
Gitblit v1.8.0