UpdateAppResponseBean.java
1.05 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
package com.cnlive.goldenline.model.mine;
/**
* Created by gujun on 2017/4/20.
*/
public class UpdateAppResponseBean {
private Integer versionCode;
private String versionName;
private String content;
private String updateUrl;
private Integer isMust;
public Integer getVersionCode() {
return versionCode;
}
public void setVersionCode(Integer versionCode) {
this.versionCode = versionCode;
}
public String getVersionName() {
return versionName;
}
public void setVersionName(String versionName) {
this.versionName = versionName;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getUpdateUrl() {
return updateUrl;
}
public void setUpdateUrl(String updateUrl) {
this.updateUrl = updateUrl;
}
public Integer getIsMust() {
return isMust;
}
public void setIsMust(Integer isMust) {
this.isMust = isMust;
}
}