Comment.java
4.1 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
package com.sinocontact.app.entity;
/**
* 评论
* @author Cao
* @since 2019/3/16 16:38
*/
public class Comment {
/**
* 评论ID
*/
private Integer commentId;
/**
* 小说ID
*/
private Integer novelId;
/**
* 用户ID
*/
private Integer userId;
/**
* 昵称
*/
private String nickname;
/**
* 电话号码
*/
private String phoneNumber;
/**
* 读者评论
*/
private String userCommentInfo;
/**
* 评论时间
*/
private String userCommentTime;
/**
* 作者回复
*/
private String authorReply;
/**
* 回复时间
*/
private String authorReplyTime;
/**
* 管理员审核状态 0;待审核;1:审核通过;-1:审核不通过
*/
private Integer checkStatus;
/**
* 审核理由
*/
private String checkInfo;
/**
* 审核时间
*/
private String checkTime;
/**
* 创建时间
*/
private String createTime;
@Override
public String toString() {
return "Comment{" +
"commentId=" + commentId +
", novelId=" + novelId +
", userId=" + userId +
", nickname='" + nickname + '\'' +
", phoneNumber='" + phoneNumber + '\'' +
", userCommentInfo='" + userCommentInfo + '\'' +
", userCommentTime='" + userCommentTime + '\'' +
", authorReply='" + authorReply + '\'' +
", authorReplyTime='" + authorReplyTime + '\'' +
", checkStatus=" + checkStatus +
", checkInfo='" + checkInfo + '\'' +
", checkTime='" + checkTime + '\'' +
", createTime='" + createTime + '\'' +
'}';
}
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public Integer getCommentId() {
return commentId;
}
public void setCommentId(Integer commentId) {
this.commentId = commentId;
}
public Integer getNovelId() {
return novelId;
}
public void setNovelId(Integer novelId) {
this.novelId = novelId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUserCommentInfo() {
return userCommentInfo;
}
public void setUserCommentInfo(String userCommentInfo) {
this.userCommentInfo = userCommentInfo;
}
public String getUserCommentTime() {
return userCommentTime;
}
public void setUserCommentTime(String userCommentTime) {
this.userCommentTime = userCommentTime;
}
public String getAuthorReply() {
return authorReply;
}
public void setAuthorReply(String authorReply) {
this.authorReply = authorReply;
}
public String getAuthorReplyTime() {
return authorReplyTime;
}
public void setAuthorReplyTime(String authorReplyTime) {
this.authorReplyTime = authorReplyTime;
}
public Integer getCheckStatus() {
return checkStatus;
}
public void setCheckStatus(Integer checkStatus) {
this.checkStatus = checkStatus;
}
public String getCheckInfo() {
return checkInfo;
}
public void setCheckInfo(String checkInfo) {
this.checkInfo = checkInfo;
}
public String getCheckTime() {
return checkTime;
}
public void setCheckTime(String checkTime) {
this.checkTime = checkTime;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
}