package com.yeshi.buwan.domain;
|
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 评论--豆豆系
|
*
|
* @author Administrator
|
*
|
*/
|
public class Comment {
|
@Expose
|
private String id;
|
@Expose
|
private VideoInfo video;
|
@Expose
|
private String createtime;
|
@Expose
|
private UserInfo user;
|
@Expose
|
private String content;
|
@Expose
|
private String thirdType;// 0--自己 1-百度
|
|
private String detailsystem;
|
|
public String getDetailsystem() {
|
return detailsystem;
|
}
|
|
public void setDetailsystem(String detailsystem) {
|
this.detailsystem = detailsystem;
|
}
|
|
private boolean show;// 是否显示
|
|
public VideoInfo getVideo() {
|
return video;
|
}
|
|
public void setVideo(VideoInfo video) {
|
this.video = video;
|
}
|
|
private List<CommentReply> replyList;// 回复列表
|
|
public List<CommentReply> getReplyList() {
|
return replyList;
|
}
|
|
public void setReplyList(List<CommentReply> replyList) {
|
this.replyList = replyList;
|
}
|
|
public Comment() {
|
|
}
|
|
public Comment(String id) {
|
this.id = id;
|
}
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
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 getThirdType() {
|
return thirdType;
|
}
|
|
public void setThirdType(String thirdType) {
|
this.thirdType = thirdType;
|
}
|
|
}
|