wuxw лет назад: 5
Родитель
Сommit
864917d0e0

+ 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);