FlowEventVoBase.java
17.2 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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
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.FlowEvent;
import java.util.ArrayList;
import java.util.Date;
public class FlowEventVoBase extends FlowEvent implements VoInterface<FlowEvent> {
private FlowEvent flowEvent;
@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<Date> eventTime_arr;
@JsonIgnore
private Date eventTime_gt;
@JsonIgnore
private Date eventTime_lt;
@JsonIgnore
private Date eventTime_gte;
@JsonIgnore
private Date eventTime_lte;
@JsonIgnore
private ArrayList<String> unid_arr;
@JsonIgnore
private String unid_like;
@JsonIgnore
private Boolean taskId_null;
@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 Boolean eventType_null;
@JsonIgnore
private ArrayList<String> eventType_arr;
@JsonIgnore
private String eventType_like;
@JsonIgnore
private Boolean eventId_null;
@JsonIgnore
private ArrayList<String> eventId_arr;
@JsonIgnore
private String eventId_like;
@JsonIgnore
private Boolean deviceCode_null;
@JsonIgnore
private ArrayList<String> deviceCode_arr;
@JsonIgnore
private String deviceCode_like;
@JsonIgnore
private Boolean deviceName_null;
@JsonIgnore
private ArrayList<String> deviceName_arr;
@JsonIgnore
private String deviceName_like;
@JsonIgnore
private Boolean locationCode_null;
@JsonIgnore
private ArrayList<String> locationCode_arr;
@JsonIgnore
private String locationCode_like;
@JsonIgnore
private Boolean locationName_null;
@JsonIgnore
private ArrayList<String> locationName_arr;
@JsonIgnore
private String locationName_like;
@JsonIgnore
private Boolean pics_null;
@JsonIgnore
private ArrayList<String> pics_arr;
@JsonIgnore
private String pics_like;
@JsonIgnore
private Boolean videoName_null;
@JsonIgnore
private ArrayList<String> videoName_arr;
@JsonIgnore
private String videoName_like;
@JsonIgnore
private Boolean channelUnid_null;
@JsonIgnore
private ArrayList<String> channelUnid_arr;
@JsonIgnore
private String channelUnid_like;
@JsonIgnore
private Boolean jsonData_null;
@JsonIgnore
private ArrayList<String> jsonData_arr;
@JsonIgnore
private String jsonData_like;
public FlowEventVoBase() {
this(null);
}
public FlowEventVoBase(FlowEvent flowEvent) {
if(flowEvent == null) {
flowEvent = new FlowEvent();
}
this.flowEvent = flowEvent;
}
@JsonIgnore
public FlowEvent getModel() {
return flowEvent;
}
public void setModel(FlowEvent flowEvent) {
this.flowEvent = flowEvent;
}
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<Date> getEventTime_arr() {
return eventTime_arr;
}
public void setEventTime_arr(ArrayList<Date> eventTime_arr) {
this.eventTime_arr = eventTime_arr;
}
public Date getEventTime_gt() {
return eventTime_gt;
}
public void setEventTime_gt(Date eventTime_gt) {
this.eventTime_gt = eventTime_gt;
}
public Date getEventTime_lt() {
return eventTime_lt;
}
public void setEventTime_lt(Date eventTime_lt) {
this.eventTime_lt = eventTime_lt;
}
public Date getEventTime_gte() {
return eventTime_gte;
}
public void setEventTime_gte(Date eventTime_gte) {
this.eventTime_gte = eventTime_gte;
}
public Date getEventTime_lte() {
return eventTime_lte;
}
public void setEventTime_lte(Date eventTime_lte) {
this.eventTime_lte = eventTime_lte;
}
public Date getEventTime() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getEventTime();
}
public void setEventTime(Date eventTime) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setEventTime(eventTime);
}
public ArrayList<String> getUnid_arr() {
return unid_arr;
}
public void setUnid_arr(ArrayList<String> unid_arr) {
this.unid_arr = unid_arr;
}
public String getUnid_like() {
return unid_like;
}
public void setUnid_like(String unid_like) {
this.unid_like = unid_like;
}
public String getUnid() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getUnid();
}
public void setUnid(String unid) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setUnid(unid);
}
public Boolean getTaskId_null() {
return taskId_null;
}
public void setTaskId_null(Boolean taskId_null) {
this.taskId_null = taskId_null;
}
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 Boolean getEventType_null() {
return eventType_null;
}
public void setEventType_null(Boolean eventType_null) {
this.eventType_null = eventType_null;
}
public ArrayList<String> getEventType_arr() {
return eventType_arr;
}
public void setEventType_arr(ArrayList<String> eventType_arr) {
this.eventType_arr = eventType_arr;
}
public String getEventType_like() {
return eventType_like;
}
public void setEventType_like(String eventType_like) {
this.eventType_like = eventType_like;
}
public String getEventType() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getEventType();
}
public void setEventType(String eventType) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setEventType(eventType);
}
public Boolean getEventId_null() {
return eventId_null;
}
public void setEventId_null(Boolean eventId_null) {
this.eventId_null = eventId_null;
}
public ArrayList<String> getEventId_arr() {
return eventId_arr;
}
public void setEventId_arr(ArrayList<String> eventId_arr) {
this.eventId_arr = eventId_arr;
}
public String getEventId_like() {
return eventId_like;
}
public void setEventId_like(String eventId_like) {
this.eventId_like = eventId_like;
}
public String getEventId() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getEventId();
}
public void setEventId(String eventId) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setEventId(eventId);
}
public Boolean getDeviceCode_null() {
return deviceCode_null;
}
public void setDeviceCode_null(Boolean deviceCode_null) {
this.deviceCode_null = deviceCode_null;
}
public ArrayList<String> getDeviceCode_arr() {
return deviceCode_arr;
}
public void setDeviceCode_arr(ArrayList<String> deviceCode_arr) {
this.deviceCode_arr = deviceCode_arr;
}
public String getDeviceCode_like() {
return deviceCode_like;
}
public void setDeviceCode_like(String deviceCode_like) {
this.deviceCode_like = deviceCode_like;
}
public String getDeviceCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDeviceCode();
}
public void setDeviceCode(String deviceCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDeviceCode(deviceCode);
}
public Boolean getDeviceName_null() {
return deviceName_null;
}
public void setDeviceName_null(Boolean deviceName_null) {
this.deviceName_null = deviceName_null;
}
public ArrayList<String> getDeviceName_arr() {
return deviceName_arr;
}
public void setDeviceName_arr(ArrayList<String> deviceName_arr) {
this.deviceName_arr = deviceName_arr;
}
public String getDeviceName_like() {
return deviceName_like;
}
public void setDeviceName_like(String deviceName_like) {
this.deviceName_like = deviceName_like;
}
public String getDeviceName() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDeviceName();
}
public void setDeviceName(String deviceName) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDeviceName(deviceName);
}
public Boolean getLocationCode_null() {
return locationCode_null;
}
public void setLocationCode_null(Boolean locationCode_null) {
this.locationCode_null = locationCode_null;
}
public ArrayList<String> getLocationCode_arr() {
return locationCode_arr;
}
public void setLocationCode_arr(ArrayList<String> locationCode_arr) {
this.locationCode_arr = locationCode_arr;
}
public String getLocationCode_like() {
return locationCode_like;
}
public void setLocationCode_like(String locationCode_like) {
this.locationCode_like = locationCode_like;
}
public String getLocationCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getLocationCode();
}
public void setLocationCode(String locationCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setLocationCode(locationCode);
}
public Boolean getLocationName_null() {
return locationName_null;
}
public void setLocationName_null(Boolean locationName_null) {
this.locationName_null = locationName_null;
}
public ArrayList<String> getLocationName_arr() {
return locationName_arr;
}
public void setLocationName_arr(ArrayList<String> locationName_arr) {
this.locationName_arr = locationName_arr;
}
public String getLocationName_like() {
return locationName_like;
}
public void setLocationName_like(String locationName_like) {
this.locationName_like = locationName_like;
}
public String getLocationName() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getLocationName();
}
public void setLocationName(String locationName) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setLocationName(locationName);
}
public Boolean getPics_null() {
return pics_null;
}
public void setPics_null(Boolean pics_null) {
this.pics_null = pics_null;
}
public ArrayList<String> getPics_arr() {
return pics_arr;
}
public void setPics_arr(ArrayList<String> pics_arr) {
this.pics_arr = pics_arr;
}
public String getPics_like() {
return pics_like;
}
public void setPics_like(String pics_like) {
this.pics_like = pics_like;
}
public String getPics() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getPics();
}
public void setPics(String pics) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setPics(pics);
}
public Boolean getVideoName_null() {
return videoName_null;
}
public void setVideoName_null(Boolean videoName_null) {
this.videoName_null = videoName_null;
}
public ArrayList<String> getVideoName_arr() {
return videoName_arr;
}
public void setVideoName_arr(ArrayList<String> videoName_arr) {
this.videoName_arr = videoName_arr;
}
public String getVideoName_like() {
return videoName_like;
}
public void setVideoName_like(String videoName_like) {
this.videoName_like = videoName_like;
}
public String getVideoName() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVideoName();
}
public void setVideoName(String videoName) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVideoName(videoName);
}
public Boolean getChannelUnid_null() {
return channelUnid_null;
}
public void setChannelUnid_null(Boolean channelUnid_null) {
this.channelUnid_null = channelUnid_null;
}
public ArrayList<String> getChannelUnid_arr() {
return channelUnid_arr;
}
public void setChannelUnid_arr(ArrayList<String> channelUnid_arr) {
this.channelUnid_arr = channelUnid_arr;
}
public String getChannelUnid_like() {
return channelUnid_like;
}
public void setChannelUnid_like(String channelUnid_like) {
this.channelUnid_like = channelUnid_like;
}
public String getChannelUnid() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getChannelUnid();
}
public void setChannelUnid(String channelUnid) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setChannelUnid(channelUnid);
}
public Boolean getJsonData_null() {
return jsonData_null;
}
public void setJsonData_null(Boolean jsonData_null) {
this.jsonData_null = jsonData_null;
}
public ArrayList<String> getJsonData_arr() {
return jsonData_arr;
}
public void setJsonData_arr(ArrayList<String> jsonData_arr) {
this.jsonData_arr = jsonData_arr;
}
public String getJsonData_like() {
return jsonData_like;
}
public void setJsonData_like(String jsonData_like) {
this.jsonData_like = jsonData_like;
}
public String getJsonData() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getJsonData();
}
public void setJsonData(String jsonData) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setJsonData(jsonData);
}
}