From 4ee86eb0f4984bf3ede3196ad8c5fe95e8c5a504 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 15 六月 2022 19:05:02 +0800
Subject: [PATCH] 优化代码

---
 service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java b/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
index 26ca796..3a5a7a4 100755
--- a/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
+++ b/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
@@ -116,9 +116,10 @@
      */
     @RequestMapping(value = "/queryReportFeeYear", method = RequestMethod.GET)
     public ResponseEntity<String> queryReportFeeYear(@RequestParam(value = "communityId") String communityId,
-                                                     @RequestParam(value = "objType") String objType,
-                                                     @RequestParam(value = "objName",required = false) String objName,
-                                                     @RequestParam(value = "configId",required = false) String configId,
+                                                     @RequestParam(value = "objType", required = false) String objType,
+                                                     @RequestParam(value = "feeTypeCd", required = false) String feeTypeCd,
+                                                     @RequestParam(value = "objName", required = false) String objName,
+                                                     @RequestParam(value = "configId", required = false) String configId,
                                                      @RequestParam(value = "page") int page,
                                                      @RequestParam(value = "row") int row) {
         ReportFeeYearCollectionDto reportFeeYearCollectionDto = new ReportFeeYearCollectionDto();
@@ -128,9 +129,9 @@
         reportFeeYearCollectionDto.setObjType(objType);
         reportFeeYearCollectionDto.setObjName(objName);
         reportFeeYearCollectionDto.setConfigId(configId);
+        reportFeeYearCollectionDto.setFeeTypeCd(feeTypeCd);
         return getReportFeeYearCollectionBMOImpl.get(reportFeeYearCollectionDto);
     }
-
 
 
     /**

--
Gitblit v1.8.0