rentaiming
2024-07-26 8d738d847973e1184a704b5ca3d4f492bffdb03f
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();
    }
}