JPushBean.java
727 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
package com.polysoft.nafmii.bean;
import com.alibaba.fastjson.annotation.JSONField;
public class JPushBean {
@JSONField(name = "type")
private String type;
@JSONField(name = "url")
private String url;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public static class Params {
@JSONField(name = "url")
private String url;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
}