Administrator
2025-07-18 4888ef96061e19769427bf52b0a644da7910331e
src/main/java/cc/mrbird/febs/mall/controller/clothes/ApiClothesSocialController.java
@@ -104,5 +104,24 @@
    }
    @ApiOperation(value = "评论", notes = "评论")
    @PostMapping(value = "/comment")
    public FebsResponse comment(@RequestBody @Validated ApiClothesSocialCommentDto dto) {
        return apiClothesSocialService.comment(dto);
    }
    @ApiOperation(value = "评论列表", notes = "评论列表")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiAllCommentVo.class)
    })
    @PostMapping(value = "/allComment")
    public FebsResponse allComment(@RequestBody @Validated ApiAllCommentDto dto) {
        return apiClothesSocialService.allComment(dto);
    }
}