| | |
| | | package com.ruoyi.article.controller.management; |
| | | |
| | | |
| | | import com.ruoyi.article.controller.forepart.dto.ArticleCommentsDTO; |
| | | import com.ruoyi.article.controller.management.dto.MgtArticleCommentsQuery; |
| | | import com.ruoyi.article.controller.management.vo.MgtArticleCommentsVO; |
| | | import com.ruoyi.article.service.IArticleCommentsService; |
| | |
| | | public class MgtArticleCommentsController { |
| | | |
| | | private final IArticleCommentsService articleCommentsService; |
| | | |
| | | @PostMapping("/delMemberArticleComments") |
| | | @ApiOperation(value = "用户端-删除用户评论/回复") |
| | | public R delMemberArticleComments(@RequestBody ArticleCommentsDTO articleCommentsDTO) { |
| | | articleCommentsService.delMemberArticleComments(articleCommentsDTO); |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * 查看详情-评论详情 |