old mode 100644
new mode 100755
| | |
| | | package com.java110.user.api; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.dto.rentingPoolFlow.RentingPoolFlowDto; |
| | | import com.java110.po.rentingPoolFlow.RentingPoolFlowPo; |
| | | import com.java110.dto.renting.RentingPoolFlowDto; |
| | | import com.java110.po.renting.RentingPoolFlowPo; |
| | | import com.java110.user.bmo.rentingPoolFlow.IDeleteRentingPoolFlowBMO; |
| | | import com.java110.user.bmo.rentingPoolFlow.IGetRentingPoolFlowBMO; |
| | | import com.java110.user.bmo.rentingPoolFlow.ISaveRentingPoolFlowBMO; |
| | |
| | | * 微信删除消息模板 |
| | | * |
| | | * @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); |
| | | } |