From 3d8ec5c23ef49d0908195c8b5b892920a46aaa8c Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 30 五月 2023 11:42:48 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 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..f28d2e4
--- a/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java
+++ b/service-user/src/main/java/com/java110/user/api/RentingPoolFlowApi.java
@@ -1,7 +1,7 @@
package com.java110.user.api;
import com.alibaba.fastjson.JSONObject;
-import com.java110.dto.rentingPoolFlow.RentingPoolFlowDto;
+import com.java110.dto.rentingPool.RentingPoolFlowDto;
import com.java110.po.rentingPoolFlow.RentingPoolFlowPo;
import com.java110.user.bmo.rentingPoolFlow.IDeleteRentingPoolFlowBMO;
import com.java110.user.bmo.rentingPoolFlow.IGetRentingPoolFlowBMO;
@@ -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