修改评论

master
bynt 2 years ago
parent 0d3eb26a15
commit 1dc35264cd

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

Loading…
Cancel
Save