From f1627e52fa6e9fea7b34731beaa55dc0222344da Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 25 二月 2021 18:19:49 +0800
Subject: [PATCH] 优化代码

---
 service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java |    2 ++
 1 files changed, 2 insertions(+), 0 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 b05cdc3..3e92a79 100644
--- a/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
+++ b/service-report/src/main/java/com/java110/report/api/ReportFeeYearCollectionApi.java
@@ -118,6 +118,7 @@
     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 = "page") int page,
                                                      @RequestParam(value = "row") int row) {
         ReportFeeYearCollectionDto reportFeeYearCollectionDto = new ReportFeeYearCollectionDto();
@@ -126,6 +127,7 @@
         reportFeeYearCollectionDto.setCommunityId(communityId);
         reportFeeYearCollectionDto.setObjType(objType);
         reportFeeYearCollectionDto.setObjName(objName);
+        reportFeeYearCollectionDto.setConfigId(configId);
         return getReportFeeYearCollectionBMOImpl.get(reportFeeYearCollectionDto);
     }
 

--
Gitblit v1.8.0