dao层修改 单元测试

This commit is contained in:
禾几海
2020-05-25 14:48:05 +08:00
parent 9185ff8f58
commit 9e6868b638
7 changed files with 282 additions and 62 deletions

View File

@@ -14,27 +14,21 @@ public class Comment {
private Long id;
/**
* 是评论还是留言 0:评论 其他1留言
*/
private Boolean type;
private int status;
private Long authorID;
private String pagePath;
private String content;
private Long articleID;
private Date date;
/**
* 回应着ID 默认为顶级回复
*/
private String responseId = "";
private User fromUser;
private User toUser;
/**
* 评论的父ID
*/
private Long pid;
private boolean delete;
}