MessageBean.java
823 Bytes
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
package com.wd.foundation.bean.custom;
import com.wd.foundation.bean.base.BaseBean;
public class MessageBean extends BaseBean {
String image;
String pushLink;
String contentTitle;
String title;
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getContentTitle() {
return contentTitle;
}
public void setContentTitle(String contentTitle) {
this.contentTitle = contentTitle;
}
public String getPushLink() {
return pushLink;
}
public void setPushLink(String pushLink) {
this.pushLink = pushLink;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}