AppVersion.java
3.71 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package com.diligrp.mobsite.man.domain;
import com.diligrp.mobsite.man.domain.common.Constant;
import com.diligrp.website.util.domain.BaseDomain;
/**
*
* @ClassName: Version
* @Description:
* @author zhangshirui
* @date 2014年8月8日 上午11:34:55
*/
@SuppressWarnings("serial")
public class AppVersion extends BaseDomain {
/**
* 是否强制升级
* 1 - 可升级,2 - 强制升级
*/
public static final Integer FORCE_NO = 2;
/**
* 2 - 强制升级
*/
public static final Integer FORCE_YES = 1;
/**
* 设备类型
* 1 - 所有设备,2 - ANDROID,3 - IOS
*/
public static final Integer DEVICE_ALL = 1;
/**
* 2 - ANDROID
*/
public static final Integer DEVICE_ANDROID= 2;
/**
* 3 - IOS
*/
public static final Integer DEVICE_IOS = 3;
/**
* 是否激活
* 1-激活,2-禁用
*/
public static final Integer STATUS_ACTIVE = 1;
/**
* 2-禁用
*/
public static final Integer STATUS_UNACTIVE = 2;
/**
* 设备类型
*/
private Integer device_type;
/**
* 客户端app版本
*/
private String app_version;
/**
* 客户端app下载地址
*/
private String app_url;
/**
* app描述
*/
private String description;
/**
* 是否启用
* 1.启用
* 2.禁用
*/
private Integer status;
/**
* 是否强制升级
* 1.是
* 2.否
*/
private Integer force_flag;
/**
* 创建者id
*/
private Long creator_id;
/**
* 系统类型
* PNR:pnr-app
* POS:pos机
* PAY:地利宝
*/
private String systemType;
/**
* 版本编号
*/
private Integer versionCode;
/**
* 是否增量升级
*/
private Integer patchFlag = Constant.VERSION_PATCH_FLAG_NO;
public Integer getDevice_type() {
return device_type;
}
public void setDevice_type(Integer device_type) {
this.device_type = device_type;
}
public String getApp_version() {
return app_version;
}
public void setApp_version(String app_version) {
this.app_version = app_version;
}
public String getApp_url() {
return app_url;
}
public void setApp_url(String app_url) {
this.app_url = app_url;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getForce_flag() {
return force_flag;
}
public void setForce_flag(Integer force_flag) {
this.force_flag = force_flag;
}
public Long getCreator_id() {
return creator_id;
}
public void setCreator_id(Long creator_id) {
this.creator_id = creator_id;
}
/**
* get value of AppVersion.systemType
* @return the systemType
* @createTime 2014年11月24日 下午6:23:15
* @author zhangshirui
*/
public String getSystemType() {
return systemType;
}
/**
* set value of AppVersion.systemType
* @param systemType the systemType to set
* @createTime 2014年11月24日 下午6:23:16
* @author zhangshirui
*/
public void setSystemType(String systemType) {
this.systemType = systemType;
}
@Override
public String toString() {
return null;
}
public Integer getVersionCode() {
return versionCode;
}
public void setVersionCode(Integer versionCode) {
this.versionCode = versionCode;
}
public Integer getPatchFlag() {
return patchFlag;
}
public void setPatchFlag(Integer patchFlag) {
this.patchFlag = patchFlag;
}
}