From eba78ba8fec77a2781444d27098a5ea78512635b Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期六, 12 六月 2021 00:35:12 +0800
Subject: [PATCH] 加入报表工鞥呢

---
 service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java b/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
index 12ca9d1..93b8522 100755
--- a/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
+++ b/service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java
@@ -531,9 +531,15 @@
      * @path /app/reportFeeMonthStatistics/queryNoFeeRooms
      */
     @RequestMapping(value = "/queryNoFeeRooms", method = RequestMethod.GET)
-    public ResponseEntity<String> queryNoFeeRooms(@RequestParam(value = "communityId") String communityId) {
+    public ResponseEntity<String> queryNoFeeRooms(
+            @RequestParam(value = "communityId") String communityId,
+            @RequestParam(value = "page") int page,
+            @RequestParam(value = "row") int row
+            ) {
         RoomDto roomDto = new RoomDto();
         roomDto.setCommunityId(communityId);
+        roomDto.setPage(page);
+        roomDto.setRow(row);
         return getReportFeeMonthStatisticsBMOImpl.queryNoFeeRooms(roomDto);
     }
 

--
Gitblit v1.8.0