package com.newvideo.domain; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class CommentReply { @Expose private String id; @Expose @SerializedName("Comment") private Comment2 comment; @Expose private LoginUser 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 Comment2 getComment() { return comment; } public void setComment(Comment2 comment) { this.comment = comment; } public LoginUser getUser() { return user; } public void setUser(LoginUser 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; } }