ParentCommentVoBean.java
1.11 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
package com.wd.foundation.bean.response;
import com.wd.foundation.bean.base.BaseBean;
public class ParentCommentVoBean extends BaseBean {
private String commentContent;
private String commentPics;
private String commentType;
private String fromUserName;
private String id;
public String getCommentContent() {
return commentContent;
}
public void setCommentContent(String commentContent) {
this.commentContent = commentContent;
}
public String getCommentPics() {
return commentPics;
}
public void setCommentPics(String commentPics) {
this.commentPics = commentPics;
}
public String getCommentType() {
return commentType;
}
public void setCommentType(String commentType) {
this.commentType = commentType;
}
public String getFromUserName() {
return fromUserName;
}
public void setFromUserName(String fromUserName) {
this.fromUserName = fromUserName;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}