模块化拆分
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package cn.celess.common.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author : xiaohai
|
||||
* @date : 2019/03/29 16:47
|
||||
*/
|
||||
|
||||
@Data
|
||||
public class Comment implements Serializable {
|
||||
|
||||
private Long id;
|
||||
|
||||
private int status;
|
||||
|
||||
private String pagePath;
|
||||
|
||||
private String content;
|
||||
|
||||
private Date date;
|
||||
|
||||
private User fromUser;
|
||||
|
||||
private User toUser;
|
||||
/**
|
||||
* 评论的父ID
|
||||
*/
|
||||
private Long pid;
|
||||
|
||||
// private boolean delete;
|
||||
}
|
||||
Reference in New Issue
Block a user