package com.yeshi.video.entity;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.base.entity.UserInfo;
|
|
public class CommentReply {
|
|
@Expose
|
private String id;
|
@Expose
|
private Comment comment;
|
@Expose
|
private UserInfo user;
|
@Expose
|
private String content;
|
@Expose
|
private String createtime;
|
@Expose
|
private boolean read;
|
@Expose
|
private CommentReply parent;
|
|
public CommentReply() {
|
|
}
|
|
public CommentReply(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Comment getComment() {
|
return comment;
|
}
|
|
public void setComment(Comment comment) {
|
this.comment = comment;
|
}
|
|
public UserInfo getUser() {
|
return user;
|
}
|
|
public void setUser(UserInfo user) {
|
this.user = user;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public boolean isRead() {
|
return read;
|
}
|
|
public void setRead(boolean read) {
|
this.read = read;
|
}
|
|
public CommentReply getParent() {
|
return parent;
|
}
|
|
public void setParent(CommentReply parent) {
|
this.parent = parent;
|
}
|
}
|