FeedBackInfo.java
1.73 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
package com.hjx.personalcenter.model;
import java.util.List;
/**
* Created by h on 2017/8/25.
*/
public class FeedBackInfo {
/**
* feedtype : 个人中心
* userId : 230
* content : dasdasde
* contact : 13526654520
* feedBackDate : 2013-10-20
* imgUrl : [{"imgUrl":"dess.jpg"},{"imgUrl":"ssss.jpg"},{"imgUrl":"dddd.jpg"}]
*/
private String feedtype;
private Long userId;
private String content;
private String contact;
private String feedBackDate;
private List<ImgUrlBean> imgUrl;
public String getFeedtype() {
return feedtype;
}
public void setFeedtype(String feedtype) {
this.feedtype = feedtype;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getContact() {
return contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public String getFeedBackDate() {
return feedBackDate;
}
public void setFeedBackDate(String feedBackDate) {
this.feedBackDate = feedBackDate;
}
public List<ImgUrlBean> getImgUrl() {
return imgUrl;
}
public void setImgUrl(List<ImgUrlBean> imgUrl) {
this.imgUrl = imgUrl;
}
public static class ImgUrlBean {
/**
* imgUrl : dess.jpg
*/
private String imgUrl;
public String getImgUrl() {
return imgUrl;
}
public void setImgUrl(String imgUrl) {
this.imgUrl = imgUrl;
}
}
}