DataStatisticVoBase.java
11.4 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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
package com.viontech.fanxing.commons.vobase;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.viontech.fanxing.commons.base.VoInterface;
import com.viontech.fanxing.commons.model.DataStatistic;
import java.util.ArrayList;
import java.util.Date;
public class DataStatisticVoBase extends DataStatistic implements VoInterface<DataStatistic> {
private DataStatistic dataStatistic;
@JsonIgnore
private ArrayList<Long> id_arr;
@JsonIgnore
private Long id_gt;
@JsonIgnore
private Long id_lt;
@JsonIgnore
private Long id_gte;
@JsonIgnore
private Long id_lte;
@JsonIgnore
private ArrayList<Long> taskId_arr;
@JsonIgnore
private Long taskId_gt;
@JsonIgnore
private Long taskId_lt;
@JsonIgnore
private Long taskId_gte;
@JsonIgnore
private Long taskId_lte;
@JsonIgnore
private ArrayList<String> taskName_arr;
@JsonIgnore
private String taskName_like;
@JsonIgnore
private ArrayList<Date> date_arr;
@JsonIgnore
private Date date_gt;
@JsonIgnore
private Date date_lt;
@JsonIgnore
private Date date_gte;
@JsonIgnore
private Date date_lte;
@JsonIgnore
private ArrayList<Integer> hour_arr;
@JsonIgnore
private Integer hour_gt;
@JsonIgnore
private Integer hour_lt;
@JsonIgnore
private Integer hour_gte;
@JsonIgnore
private Integer hour_lte;
@JsonIgnore
private ArrayList<Integer> traffic_arr;
@JsonIgnore
private Integer traffic_gt;
@JsonIgnore
private Integer traffic_lt;
@JsonIgnore
private Integer traffic_gte;
@JsonIgnore
private Integer traffic_lte;
@JsonIgnore
private ArrayList<Integer> behavior_arr;
@JsonIgnore
private Integer behavior_gt;
@JsonIgnore
private Integer behavior_lt;
@JsonIgnore
private Integer behavior_gte;
@JsonIgnore
private Integer behavior_lte;
@JsonIgnore
private ArrayList<Integer> flow_arr;
@JsonIgnore
private Integer flow_gt;
@JsonIgnore
private Integer flow_lt;
@JsonIgnore
private Integer flow_gte;
@JsonIgnore
private Integer flow_lte;
public DataStatisticVoBase() {
this(null);
}
public DataStatisticVoBase(DataStatistic dataStatistic) {
if(dataStatistic == null) {
dataStatistic = new DataStatistic();
}
this.dataStatistic = dataStatistic;
}
@JsonIgnore
public DataStatistic getModel() {
return dataStatistic;
}
public void setModel(DataStatistic dataStatistic) {
this.dataStatistic = dataStatistic;
}
public ArrayList<Long> getId_arr() {
return id_arr;
}
public void setId_arr(ArrayList<Long> id_arr) {
this.id_arr = id_arr;
}
public Long getId_gt() {
return id_gt;
}
public void setId_gt(Long id_gt) {
this.id_gt = id_gt;
}
public Long getId_lt() {
return id_lt;
}
public void setId_lt(Long id_lt) {
this.id_lt = id_lt;
}
public Long getId_gte() {
return id_gte;
}
public void setId_gte(Long id_gte) {
this.id_gte = id_gte;
}
public Long getId_lte() {
return id_lte;
}
public void setId_lte(Long id_lte) {
this.id_lte = id_lte;
}
public Long getId() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getId();
}
public void setId(Long id) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setId(id);
}
public ArrayList<Long> getTaskId_arr() {
return taskId_arr;
}
public void setTaskId_arr(ArrayList<Long> taskId_arr) {
this.taskId_arr = taskId_arr;
}
public Long getTaskId_gt() {
return taskId_gt;
}
public void setTaskId_gt(Long taskId_gt) {
this.taskId_gt = taskId_gt;
}
public Long getTaskId_lt() {
return taskId_lt;
}
public void setTaskId_lt(Long taskId_lt) {
this.taskId_lt = taskId_lt;
}
public Long getTaskId_gte() {
return taskId_gte;
}
public void setTaskId_gte(Long taskId_gte) {
this.taskId_gte = taskId_gte;
}
public Long getTaskId_lte() {
return taskId_lte;
}
public void setTaskId_lte(Long taskId_lte) {
this.taskId_lte = taskId_lte;
}
public Long getTaskId() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getTaskId();
}
public void setTaskId(Long taskId) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setTaskId(taskId);
}
public ArrayList<String> getTaskName_arr() {
return taskName_arr;
}
public void setTaskName_arr(ArrayList<String> taskName_arr) {
this.taskName_arr = taskName_arr;
}
public String getTaskName_like() {
return taskName_like;
}
public void setTaskName_like(String taskName_like) {
this.taskName_like = taskName_like;
}
public String getTaskName() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getTaskName();
}
public void setTaskName(String taskName) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setTaskName(taskName);
}
public ArrayList<Date> getDate_arr() {
return date_arr;
}
public void setDate_arr(ArrayList<Date> date_arr) {
this.date_arr = date_arr;
}
public Date getDate_gt() {
return date_gt;
}
public void setDate_gt(Date date_gt) {
this.date_gt = date_gt;
}
public Date getDate_lt() {
return date_lt;
}
public void setDate_lt(Date date_lt) {
this.date_lt = date_lt;
}
public Date getDate_gte() {
return date_gte;
}
public void setDate_gte(Date date_gte) {
this.date_gte = date_gte;
}
public Date getDate_lte() {
return date_lte;
}
public void setDate_lte(Date date_lte) {
this.date_lte = date_lte;
}
public Date getDate() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDate();
}
public void setDate(Date date) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDate(date);
}
public ArrayList<Integer> getHour_arr() {
return hour_arr;
}
public void setHour_arr(ArrayList<Integer> hour_arr) {
this.hour_arr = hour_arr;
}
public Integer getHour_gt() {
return hour_gt;
}
public void setHour_gt(Integer hour_gt) {
this.hour_gt = hour_gt;
}
public Integer getHour_lt() {
return hour_lt;
}
public void setHour_lt(Integer hour_lt) {
this.hour_lt = hour_lt;
}
public Integer getHour_gte() {
return hour_gte;
}
public void setHour_gte(Integer hour_gte) {
this.hour_gte = hour_gte;
}
public Integer getHour_lte() {
return hour_lte;
}
public void setHour_lte(Integer hour_lte) {
this.hour_lte = hour_lte;
}
public Integer getHour() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getHour();
}
public void setHour(Integer hour) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setHour(hour);
}
public ArrayList<Integer> getTraffic_arr() {
return traffic_arr;
}
public void setTraffic_arr(ArrayList<Integer> traffic_arr) {
this.traffic_arr = traffic_arr;
}
public Integer getTraffic_gt() {
return traffic_gt;
}
public void setTraffic_gt(Integer traffic_gt) {
this.traffic_gt = traffic_gt;
}
public Integer getTraffic_lt() {
return traffic_lt;
}
public void setTraffic_lt(Integer traffic_lt) {
this.traffic_lt = traffic_lt;
}
public Integer getTraffic_gte() {
return traffic_gte;
}
public void setTraffic_gte(Integer traffic_gte) {
this.traffic_gte = traffic_gte;
}
public Integer getTraffic_lte() {
return traffic_lte;
}
public void setTraffic_lte(Integer traffic_lte) {
this.traffic_lte = traffic_lte;
}
public Integer getTraffic() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getTraffic();
}
public void setTraffic(Integer traffic) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setTraffic(traffic);
}
public ArrayList<Integer> getBehavior_arr() {
return behavior_arr;
}
public void setBehavior_arr(ArrayList<Integer> behavior_arr) {
this.behavior_arr = behavior_arr;
}
public Integer getBehavior_gt() {
return behavior_gt;
}
public void setBehavior_gt(Integer behavior_gt) {
this.behavior_gt = behavior_gt;
}
public Integer getBehavior_lt() {
return behavior_lt;
}
public void setBehavior_lt(Integer behavior_lt) {
this.behavior_lt = behavior_lt;
}
public Integer getBehavior_gte() {
return behavior_gte;
}
public void setBehavior_gte(Integer behavior_gte) {
this.behavior_gte = behavior_gte;
}
public Integer getBehavior_lte() {
return behavior_lte;
}
public void setBehavior_lte(Integer behavior_lte) {
this.behavior_lte = behavior_lte;
}
public Integer getBehavior() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getBehavior();
}
public void setBehavior(Integer behavior) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setBehavior(behavior);
}
public ArrayList<Integer> getFlow_arr() {
return flow_arr;
}
public void setFlow_arr(ArrayList<Integer> flow_arr) {
this.flow_arr = flow_arr;
}
public Integer getFlow_gt() {
return flow_gt;
}
public void setFlow_gt(Integer flow_gt) {
this.flow_gt = flow_gt;
}
public Integer getFlow_lt() {
return flow_lt;
}
public void setFlow_lt(Integer flow_lt) {
this.flow_lt = flow_lt;
}
public Integer getFlow_gte() {
return flow_gte;
}
public void setFlow_gte(Integer flow_gte) {
this.flow_gte = flow_gte;
}
public Integer getFlow_lte() {
return flow_lte;
}
public void setFlow_lte(Integer flow_lte) {
this.flow_lte = flow_lte;
}
public Integer getFlow() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFlow();
}
public void setFlow(Integer flow) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFlow(flow);
}
}