rentaiming
2024-06-07 730c70af018d50a6ca5a13be2d8fa25c6c42c357
ruoyi-modules/ruoyi-article/src/main/java/com/ruoyi/article/controller/forepart/ForepartArticleController.java
@@ -66,13 +66,13 @@
    @PostMapping("/getArticleCommentsList")
    @ApiOperation(value = "用户端-获取评论列表")
    public R<PageDTO<ArticleCommentsVO>> getArticleCommentsList(ArticleDTO articleDTO) {
    public R<PageDTO<ArticleCommentsVO>> getArticleCommentsList(@RequestBody  ArticleDTO articleDTO) {
        return R.ok(iArticleService.getArticleCommentsList(articleDTO));
    }
    @PostMapping("/getreport")
    @ApiOperation(value = "用户端-用户举报举报文章")
    public R getReport(ArticleDTO articleDTO) {
    public R getReport(@RequestBody  ArticleDTO articleDTO) {
        iArticleService.getReport(articleDTO);
        return R.ok();
    }