This commit is contained in:
sjm
2023-12-22 17:05:37 +08:00
parent b77f863fb5
commit b2cff4c97a
12 changed files with 557 additions and 1 deletions

View File

@@ -46,4 +46,10 @@ public class CommentController {
public String View_comment(){
return commentService.View_comment();
}
// 显示回复
@RequestMapping(method = RequestMethod.GET, value = "/view_reply")
public String View_reply(int id){
return commentService.View_Reply(id);
}
}