修改评论

master
bynt 2 years ago
parent 0d3eb26a15
commit 1dc35264cd

@ -63,9 +63,9 @@ public class TiktokVideoCommentController {
@ApiOperation("删除评论") @ApiOperation("删除评论")
@GetMapping("/delete") @GetMapping("/delete")
public Result<PageResult> deleteMessage public Result<ResultCode> deleteMessage
(@RequestParam("userId") Long memberId) { (@RequestParam("tiktokId") Long tiktokId, @RequestParam("videoId") Long videoId) {
this.tiktokVideoCommentService.deleteComment(memberId); this.tiktokVideoCommentService.deleteComment(videoId, videoId);
return Result.success(); return Result.success();
} }

Loading…
Cancel
Save