|
|
|
@ -67,8 +67,8 @@ public class CommentController extends BaseController{
|
|
|
|
|
return Result.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@PutMapping("/thumbup")
|
|
|
|
|
public Result<CommentThumbupVo> thumbup(@RequestParam String userId){
|
|
|
|
|
@GetMapping("/getUserCommentInfo")
|
|
|
|
|
public Result<CommentThumbupVo> getUserCommentInfo(@RequestParam String userId){
|
|
|
|
|
CommentThumbupVo userCommentInfo = commentService.getUserCommentInfo(userId);
|
|
|
|
|
return Result.success(userCommentInfo);
|
|
|
|
|
}
|
|
|
|
|