ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/controller/management/MgtArticleController.java
@@ -125,4 +125,12 @@ articleService.removeById(id); return R.ok(); } @ApiOperation("删除资讯评论") @DeleteMapping("/comments/{id}") public R<?> removeCommentsById( @ApiParam(name = "id", value = "资讯评论id", required = true) @PathVariable("id") Long id) { articleService.removeCommentsById(id); return R.ok(); } }