From ba5210dc8c6c537cacc59c18d58baa9744cd2b9d Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 10 五月 2022 11:14:39 +0800
Subject: [PATCH] 优化报修单推送bug

---
 service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java b/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java
old mode 100644
new mode 100755
index fb889f5..fbf47b6
--- a/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java
+++ b/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java
@@ -98,17 +98,21 @@
      * 寰俊鍒犻櫎娑堟伅妯℃澘
      *
      * @param communityId 灏忓尯ID
-     * @return
+     * @returnaddOwner
      * @serviceCode /rentingPoolFlow/queryRentingPoolFlow
      * @path /app/rentingPoolFlow/queryRentingPoolFlow
      */
     @RequestMapping(value = "/queryRentingPoolFlow", method = RequestMethod.GET)
     public ResponseEntity<String> queryRentingPoolFlow(@RequestParam(value = "communityId") String communityId,
+                                                       @RequestParam(value = "rentingId") String rentingId,
+                                                       @RequestParam(value = "state", required = false) String state,
                                                        @RequestParam(value = "page") int page,
                                                        @RequestParam(value = "row") int row) {
         RentingPoolFlowDto rentingPoolFlowDto = new RentingPoolFlowDto();
         rentingPoolFlowDto.setPage(page);
         rentingPoolFlowDto.setRow(row);
+        rentingPoolFlowDto.setRentingId(rentingId);
+        rentingPoolFlowDto.setState(state);
         rentingPoolFlowDto.setCommunityId(communityId);
         return getRentingPoolFlowBMOImpl.get(rentingPoolFlowDto);
     }

--
Gitblit v1.8.0