ApkMessage.java
1.91 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
package com.gimi.common.cinema.model;
/**
* Created by wugian on 2016/8/5
*/
public class ApkMessage {
/**
* code : 0
* msg : 成功
* data : {"verCode":"41","verName":"v4.1","description":"1,数据库共用.#2,搜索功能优化.#3,扫描优化.#3,其他片源兼容测试","appUrl":"http://apkhome.qiniudn.com/088/GimiCinema-qinlin-4.0-40-1.apk"}
*/
private int code;
private String msg;
/**
* verCode : 41
* verName : v4.1
* description : 1,数据库共用.#2,搜索功能优化.#3,扫描优化.#3,其他片源兼容测试
* appUrl : http://apkhome.qiniudn.com/088/GimiCinema-qinlin-4.0-40-1.apk
*/
private DataEntity data;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public DataEntity getData() {
return data;
}
public void setData(DataEntity data) {
this.data = data;
}
public static class DataEntity {
private int verCode;
private String verName;
private String description;
private String appUrl;
public int getVerCode() {
return verCode;
}
public void setVerCode(int verCode) {
this.verCode = verCode;
}
public String getVerName() {
return verName;
}
public void setVerName(String verName) {
this.verName = verName;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getAppUrl() {
return appUrl;
}
public void setAppUrl(String appUrl) {
this.appUrl = appUrl;
}
}
}