| | |
| | | } |
| | | |
| | | @ApiOperation(value = "工作大屏社区活动报名详情接口@lyq",response = ActActivityPeopleListVO.class) |
| | | @PostMapping("/noToken/act/activity/people/list") |
| | | @PostMapping("/act/activity/people/list") |
| | | public R actActivityPeopleList(@RequestBody ScreenActActivityPeopleListDTO activityPeopleListDTO) { |
| | | return communityService.getActActivityPeopleList(activityPeopleListDTO); |
| | | } |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "工作大屏邻里圈详情接口@lyq",response = ComActNeighborCircleAdminVO.class) |
| | | @GetMapping("/noToken/neighbor/detail") |
| | | @GetMapping("/neighbor/detail") |
| | | public R neighborDetail(@RequestParam("id")Long id) { |
| | | return communityService.detailNeighborByAdmin(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "工作大屏邻里圈详情的所有评论接口@lyq",response = ComActNeighborCommentByAdminVO.class) |
| | | @PostMapping("/noToken/neighbor/detail/comment") |
| | | @PostMapping("/neighbor/detail/comment") |
| | | public R detailNeighborAllCommentByAdmin(@RequestBody DetailNeighborAllCommentByAdminDTO dto){ |
| | | return communityService.detailNeighborAllCommentByAdmin(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "工作大屏邻里圈评论详情接口@lyq",response = ComActNeighborCommentByAdminVO.class) |
| | | @GetMapping("/noToken/neighbor/detail/comment/detail") |
| | | @GetMapping("/neighbor/detail/comment/detail") |
| | | public R detailNeighborCommentByAdmin(@RequestParam("id") Long id){ |
| | | return communityService.detailNeighborCommentByAdmin(id); |
| | | } |
| | | |
| | | @ApiOperation(value = "工作大屏邻里圈评论详情回复列表接口@lyq",response = ComActNeighborCommentReplyByAdminVO.class) |
| | | @PostMapping("/noToken/neighbor/detail/comment/reply") |
| | | @PostMapping("/neighbor/detail/comment/reply") |
| | | public R detailNeighborCommentAllReply(@RequestBody DetailNeighborCommentReplyByAdminDTO dto){ |
| | | return communityService.detailNeighborCommentAllReply(dto); |
| | | } |
| | |
| | | } |
| | | |
| | | @ApiOperation(value = "社区动态详情", response = ComActDynVO.class) |
| | | @GetMapping("/noToken/detaildynamic") |
| | | @GetMapping("/detaildynamic") |
| | | @ApiImplicitParam(name = "id", value = "社区动态主键", required = true) |
| | | public R detailDynamic(@RequestParam("id") Long id) { |
| | | return communityService.detailDynamic(id); |