AppVersion.java
5.62 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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
package com.diligrp.mobsite.getway.domain;
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 - 所有设备
*/
public static final int DEVICE_ALL = 1;
/**
* 2 - ANDROID
*/
public static final int DEVICE_ANDROID= 2;
/**
* 3 - IOS
*/
public static final int DEVICE_IOS = 3;
/**
* 设备类型
*/
private Integer deviceType;
/**
* 客户端app版本
*/
private String appVersion;
/**
* 客户端app下载地址
*/
private String appUrl;
/**
* app描述
*/
private String description;
/**
* 是否启用
* 1.启用
* 2.禁用
*/
private Integer status;
/**
* 是否强制升级
* 1.是
* 2.否
*/
private Integer forceFlag;
/**
* 版本编号
*/
private Integer versionCode;
/**
* 是否增量升级
*/
private Integer patchFlag;
/**
* 创建者id
*/
private Long creatorId;
/**
* get value of AppVersion.deviceType
* @return the deviceType
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public Integer getDeviceType() {
return deviceType;
}
/**
* set value of AppVersion.deviceType
* @param deviceType the deviceType to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setDeviceType(Integer deviceType) {
this.deviceType = deviceType;
}
/**
* get value of AppVersion.appVersion
* @return the appVersion
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public String getAppVersion() {
return appVersion;
}
/**
* set value of AppVersion.appVersion
* @param appVersion the appVersion to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
/**
* get value of AppVersion.appUrl
* @return the appUrl
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public String getAppUrl() {
return appUrl;
}
/**
* set value of AppVersion.appUrl
* @param appUrl the appUrl to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setAppUrl(String appUrl) {
this.appUrl = appUrl;
}
/**
* get value of AppVersion.description
* @return the description
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public String getDescription() {
return description;
}
/**
* set value of AppVersion.description
* @param description the description to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setDescription(String description) {
this.description = description;
}
/**
* get value of AppVersion.status
* @return the status
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public Integer getStatus() {
return status;
}
/**
* set value of AppVersion.status
* @param status the status to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setStatus(Integer status) {
this.status = status;
}
/**
* get value of AppVersion.forceFlag
* @return the forceFlag
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public Integer getForceFlag() {
return forceFlag;
}
/**
* set value of AppVersion.forceFlag
* @param forceFlag the forceFlag to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setForceFlag(Integer forceFlag) {
this.forceFlag = forceFlag;
}
/**
* get value of AppVersion.creatorId
* @return the creatorId
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public Long getCreatorId() {
return creatorId;
}
/**
* set value of AppVersion.creatorId
* @param creatorId the creatorId to set
* @createTime 2014年8月26日 下午3:11:20
* @author zhangshirui
*/
public void setCreatorId(Long creatorId) {
this.creatorId = creatorId;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("AppVersion [deviceType=");
builder.append(deviceType);
builder.append(", appVersion=");
builder.append(appVersion);
builder.append(", appUrl=");
builder.append(appUrl);
builder.append(", description=");
builder.append(description);
builder.append(", status=");
builder.append(status);
builder.append(", forceFlag=");
builder.append(forceFlag);
builder.append(", creatorId=");
builder.append(creatorId);
builder.append("]");
return builder.toString();
}
public Integer getPatchFlag() {
return patchFlag;
}
public void setPatchFlag(Integer patchFlag) {
this.patchFlag = patchFlag;
}
public Integer getVersionCode() {
return versionCode;
}
public void setVersionCode(Integer versionCode) {
this.versionCode = versionCode;
}
}