| | |
| | | * @return 协议集合 |
| | | */ |
| | | @PostMapping("listagreement") |
| | | public R listAgreement() { |
| | | return userService.listAgreement(); |
| | | public R listAgreement(@RequestParam("communityId") Long communityId) { |
| | | return userService.listAgreement(communityId); |
| | | } |
| | | |
| | | /** |
| | |
| | | return userService.gridMemberEditStatus(gridMemberEditDTO); |
| | | } |
| | | |
| | | @GetMapping("big/no/tip") |
| | | public R noTips(@RequestParam("userId") Long userId){ |
| | | return userService.noTips(userId); |
| | | } |
| | | |
| | | /** |
| | | * 查询社区的收益说明 |
| | | * @param communityId 社区id |
| | | * @return 收益说明 |
| | | */ |
| | | @PostMapping("listagreements") |
| | | public R listAgreements(@RequestParam("communityId") Long communityId) { |
| | | return userService.listAgreements(communityId); |
| | | } |
| | | |
| | | @PostMapping("user/getUserGrids") |
| | | public R getGridIsOk(@RequestParam("userId") Long userId) { |
| | | return userService.getGridIsOk(userId); |
| | | } |
| | | |
| | | } |