package com.yeshi.video.entity; import java.util.List; import com.google.gson.annotations.Expose; import com.yeshi.base.entity.UserInfo; import com.yeshi.base.entity.video.VideoInfo; /** * ���� * * @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; private String thirdType;// 0--自己 1-百度 private boolean show;// 是否显示 public VideoInfo getVideo() { return video; } public void setVideo(VideoInfo video) { this.video = video; } @Expose private List replyList;// 回复列表 public List getReplyList() { return replyList; } public void setReplyList(List 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; } }