| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.neighbor.AddComActNeighborCircleAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAdminDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.ComActNeighborCircleDetailAppDTO; |
| | | import com.panzhihua.common.model.dtos.neighbor.*; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.neighbor.AddNeighborCircleAdminVO; |
| | | import com.panzhihua.common.model.vos.neighbor.EditNeighborCircleAdminVO; |
| | |
| | | */ |
| | | R changeStatusByAdmin(EditNeighborCircleAdminVO editNeighborCircleAdminVO); |
| | | |
| | | /** |
| | | * 用户查询邻里圈列表 |
| | | * @param neighborCircleAppDTO 请求参数 |
| | | * @return 邻里圈列表 |
| | | */ |
| | | R neighborExamineByApp(ComActNeighborCircleAppDTO neighborCircleAppDTO); |
| | | |
| | | /** |
| | | * 邻里圈点赞 |
| | | * @param fabulousAppDTO 请求参数 |
| | | * @return 点赞结果 |
| | | */ |
| | | R neighborFabulousByApp(ComActNeighborFabulousAppDTO fabulousAppDTO); |
| | | |
| | | /** |
| | | * 邻里圈转发 |
| | | * @param forwardAppDTO 请求参数 |
| | | * @return 转发结果 |
| | | */ |
| | | R neighborForwardByApp(ComActNeighborForwardAppDTO forwardAppDTO); |
| | | |
| | | /** |
| | | * 邻里圈评论 |
| | | * @param commentAppDTO 请求参数 |
| | | * @return 评论结果 |
| | | */ |
| | | R neighborCommentByApp(ComActNeighborCommentAppDTO commentAppDTO); |
| | | |
| | | /** |
| | | * 邻里圈回复 |
| | | * @param replyAppDTO 请求参数 |
| | | * @return 回复结果 |
| | | */ |
| | | R neighborReplyByApp(ComActNeighborReplyAppDTO replyAppDTO); |
| | | |
| | | /** |
| | | * 定时任务更新邻里圈近3天评论数/点赞数/浏览量 |
| | | * @return 执行结果 |
| | | */ |
| | | R timeTaskCircleFlow(); |
| | | |
| | | } |