浏览代码

优化代码

wuxw 5 年之前
父节点
当前提交
864917d0e0
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java

+ 5 - 1
service-report/src/main/java/com/java110/report/api/ReportFeeMonthStatisticsApi.java

@@ -531,7 +531,11 @@ public class ReportFeeMonthStatisticsApi {
      * @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);
         return getReportFeeMonthStatisticsBMOImpl.queryNoFeeRooms(roomDto);