ReplyBean.java
3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package com.cnlive.gundam.main.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.io.Serializable;
/**
* Description:
* Created on 2017/3/5
* Author : 萧
*/
public class ReplyBean implements Serializable, Parcelable {
private Integer recordId;
private String userName;
private String userHead;
private String replyContent;
private String replyTime;
private Integer commentId;
public ReplyBean() {
}
public ReplyBean(Integer recordId, String userName, String userHead, String replyContent, String replyTime, Integer commentId) {
this.recordId = recordId;
this.userName = userName;
this.userHead = userHead;
this.replyContent = replyContent;
this.replyTime = replyTime;
this.commentId = commentId;
}
public Integer getRecordId() {
return recordId;
}
public void setRecordId(Integer recordId) {
this.recordId = recordId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserHead() {
return userHead;
}
public void setUserHead(String userHead) {
this.userHead = userHead;
}
public String getReplyContent() {
return replyContent;
}
public void setReplyContent(String replyContent) {
this.replyContent = replyContent;
}
public String getReplyTime() {
return replyTime;
}
public void setReplyTime(String replyTime) {
this.replyTime = replyTime;
}
public Integer getCommentId() {
return commentId;
}
public void setCommentId(Integer commentId) {
this.commentId = commentId;
}
@Override
public String toString() {
return "ReplyBean{" +
"recordId=" + recordId +
", userName='" + userName + '\'' +
", userHead='" + userHead + '\'' +
", replyContent='" + replyContent + '\'' +
", replyTime='" + replyTime + '\'' +
", commentId=" + commentId +
'}';
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeValue(this.recordId);
dest.writeString(this.userName);
dest.writeString(this.userHead);
dest.writeString(this.replyContent);
dest.writeString(this.replyTime);
dest.writeValue(this.commentId);
}
protected ReplyBean(Parcel in) {
this.recordId = (Integer) in.readValue(Integer.class.getClassLoader());
this.userName = in.readString();
this.userHead = in.readString();
this.replyContent = in.readString();
this.replyTime = in.readString();
this.commentId = (Integer) in.readValue(Integer.class.getClassLoader());
}
public static final Creator<ReplyBean> CREATOR = new Creator<ReplyBean>() {
@Override
public ReplyBean createFromParcel(Parcel source) {
return new ReplyBean(source);
}
@Override
public ReplyBean[] newArray(int size) {
return new ReplyBean[size];
}
};
}