| | |
| | | import com.panzhihua.common.model.dtos.advertisement.PageComOpsAdvDTO; |
| | | import com.panzhihua.common.model.dtos.community.*; |
| | | import com.panzhihua.common.model.dtos.neighbor.*; |
| | | import com.panzhihua.common.model.dtos.neighbor.*; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAdminDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.AddComActNeighborCircleAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAppDTO; |
| | |
| | | import com.panzhihua.common.model.vos.community.questnaire.EditComActQuestnaireVo; |
| | | import com.panzhihua.common.model.vos.community.questnaire.QuestnaireVO; |
| | | import com.panzhihua.common.model.vos.community.questnaire.UsersAnswerQuestnaireVO; |
| | | import com.panzhihua.common.model.vos.neighbor.ChangeCommentReplyStatusByAdminVO; |
| | | import com.panzhihua.common.model.vos.neighbor.ChangeCommentStatusByAdminVO; |
| | | import com.panzhihua.common.model.vos.neighbor.EditNeighborCircleAdminVO; |
| | | import com.panzhihua.common.model.vos.shop.ShopOperLogVO; |
| | | import com.panzhihua.common.model.vos.shop.AddShopGoodsVO; |
| | | import com.panzhihua.common.model.vos.shop.ShopStoreVO; |
| | |
| | | |
| | | /** |
| | | * 后台修改邻里圈 |
| | | * @param comActNeighborCircleAdminDTO 请求参数 |
| | | * @param editNeighborCircleAdminVO 请求参数 |
| | | */ |
| | | @PostMapping("/neighbor/changeStatusByAdmin") |
| | | R changeStatusByAdmin(@RequestBody ComActNeighborCircleAdminDTO comActNeighborCircleAdminDTO); |
| | | R changeStatusByAdmin(@RequestBody EditNeighborCircleAdminVO editNeighborCircleAdminVO); |
| | | |
| | | |
| | | /** |
| | | * 后台修改邻里圈 |
| | | * 邻里圈_后台删除 |
| | | * @param id 邻里圈id |
| | | * @return 邻里圈列表 |
| | | */ |
| | | @PostMapping("/neighbor/deleteByAdmin") |
| | | R deleteByAdmin(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 查看邻里圈基础_详情 |
| | | * @param id 邻里圈id |
| | | * @return 邻里圈列表 |
| | | */ |
| | | @GetMapping("/neighbor/detailNeighborByAdmin") |
| | | R detailNeighborByAdmin(@RequestParam("id")Long id); |
| | | |
| | | /** |
| | | * 邻里圈的所有评论_分页 |
| | | * @param dto 请求参数 |
| | | * @return 评论列表 |
| | | */ |
| | | @PostMapping("/neighbor/detailNeighborAllCommentByAdmin") |
| | | R detailNeighborAllCommentByAdmin(@RequestBody DetailNeighborAllCommentByAdminDTO dto); |
| | | |
| | | /** |
| | | * 评论的状态_修改 |
| | | * @param vo 请求参数 |
| | | */ |
| | | @PostMapping("/neighbor/changeCommentStatusByAdmin") |
| | | R changeCommentStatusByAdmin(@RequestBody ChangeCommentStatusByAdminVO vo); |
| | | |
| | | /** |
| | | * 邻里圈评论_详情 |
| | | * @param id 评论id |
| | | */ |
| | | @GetMapping("/neighbor/detailNeighborCommentByAdmin") |
| | | R detailNeighborCommentByAdmin(@RequestParam("id") Long id); |
| | | |
| | | |
| | | /** |
| | |
| | | R timedTaskNeighborCircleRecord(); |
| | | |
| | | /** |
| | | * 邻里圈评论回复_分页 |
| | | * @param dto 参数 |
| | | */ |
| | | @PostMapping("/neighbor/detailNeighborCommentAllReply") |
| | | R detailNeighborCommentAllReply(@RequestBody DetailNeighborCommentReplyByAdminDTO dto); |
| | | |
| | | /** |
| | | * 邻里圈评论回复_基本详情 |
| | | * @param id 参数 |
| | | */ |
| | | @PostMapping("/neighbor/detailNeighborCommentReply") |
| | | R detailNeighborCommentReply(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 评论回复状态_修改 |
| | | * @param changeStatusReplyVO 参数 |
| | | */ |
| | | @PostMapping("/neighbor/changeCommentReplyStatusByAdmin") |
| | | R changeCommentReplyStatusByAdmin(@RequestBody ChangeCommentReplyStatusByAdminVO changeStatusReplyVO); |
| | | /** |
| | | * 邻里圈取消点赞 |
| | | * @param fabulousAppDTO 请求参数 |
| | | * @return 取消点赞结果 |