UpdateVersion.java
1.31 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
package com.polysoft.nafmii.bean;
import com.alibaba.fastjson.annotation.JSONField;
public class UpdateVersion {
@JSONField(name = "vNumber")
private String vNumber; // 版本号
@JSONField(name = "location")
private String location; // zip包地址
@JSONField(name = "isEnable")
private String isEnable; // 有效标识 0 有效 1 无效
@JSONField(name = "upgradeType")
private String upgradeType; // 1 H5 、2 Android 、3 iOS
@JSONField(name = "isForce")
private String isForce; // 是否强制更新 0 是 1 否
public String getvNumber() {
return vNumber;
}
public void setvNumber(String vNumber) {
this.vNumber = vNumber;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getIsEnable() {
return isEnable;
}
public void setIsEnable(String isEnable) {
this.isEnable = isEnable;
}
public String getUpgradeType() {
return upgradeType;
}
public void setUpgradeType(String upgradeType) {
this.upgradeType = upgradeType;
}
public String getIsForce() {
return isForce;
}
public void setIsForce(String isForce) {
this.isForce = isForce;
}
}