| | |
| | | |
| | | @ApiOperation(value = "我的活动", response = ComActActivityVO.class) |
| | | @GetMapping("listactivity") |
| | | public R listActivity(@RequestParam(value = "status", required = false) Integer status,@RequestParam(value = "type", required = false) Integer type) { |
| | | public R listActivity(@RequestParam(value = "status", required = false) Integer status, |
| | | @RequestParam(value = "type", required = false) Integer type) { |
| | | LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); |
| | | Long userId = loginUserInfo.getUserId(); |
| | | Long communityId = loginUserInfo.getCommunityId(); |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * 获取动作人员详情 |
| | | * @param communityId |
| | | * @param phone |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "社区工做人员详情") |
| | | @GetMapping("/getComPbServiceTeamData") |
| | | public R getComPbServiceTeamData(@RequestParam("communityId") String communityId, |
| | | @RequestParam("phone") String phone) |
| | | { |
| | | return partyBuildingService.getComPbServiceTeamData(communityId,phone); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "获取用户电子档案", response = UserArchivesVO.class) |
| | | @PostMapping("getUserArchives") |
| | | public R getUserArchives() { |