TrafficVoBase.java
41.8 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
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
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.Traffic;
import java.util.ArrayList;
import java.util.Date;
public class TrafficVoBase extends Traffic implements VoInterface<Traffic> {
private Traffic traffic;
@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 eventCate_null;
@JsonIgnore
private ArrayList<String> eventCate_arr;
@JsonIgnore
private String eventCate_like;
@JsonIgnore
private Boolean eventType_null;
@JsonIgnore
private ArrayList<String> eventType_arr;
@JsonIgnore
private String eventType_like;
@JsonIgnore
private Boolean channelUnid_null;
@JsonIgnore
private ArrayList<String> channelUnid_arr;
@JsonIgnore
private String channelUnid_like;
@JsonIgnore
private Boolean plateColor_null;
@JsonIgnore
private ArrayList<String> plateColor_arr;
@JsonIgnore
private String plateColor_like;
@JsonIgnore
private Boolean plateNumber_null;
@JsonIgnore
private ArrayList<String> plateNumber_arr;
@JsonIgnore
private String plateNumber_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 laneCode_null;
@JsonIgnore
private ArrayList<String> laneCode_arr;
@JsonIgnore
private String laneCode_like;
@JsonIgnore
private Boolean directionCode_null;
@JsonIgnore
private ArrayList<String> directionCode_arr;
@JsonIgnore
private String directionCode_like;
@JsonIgnore
private Boolean vehicleType_null;
@JsonIgnore
private ArrayList<String> vehicleType_arr;
@JsonIgnore
private String vehicleType_like;
@JsonIgnore
private Boolean vehicleColor_null;
@JsonIgnore
private ArrayList<String> vehicleColor_arr;
@JsonIgnore
private String vehicleColor_like;
@JsonIgnore
private Boolean vehicleLogo_null;
@JsonIgnore
private ArrayList<String> vehicleLogo_arr;
@JsonIgnore
private String vehicleLogo_like;
@JsonIgnore
private Boolean illegalCode_null;
@JsonIgnore
private ArrayList<String> illegalCode_arr;
@JsonIgnore
private String illegalCode_like;
@JsonIgnore
private Boolean illegalState_null;
@JsonIgnore
private ArrayList<Integer> illegalState_arr;
@JsonIgnore
private Integer illegalState_gt;
@JsonIgnore
private Integer illegalState_lt;
@JsonIgnore
private Integer illegalState_gte;
@JsonIgnore
private Integer illegalState_lte;
@JsonIgnore
private Boolean featureAnnualInspectionMark_null;
@JsonIgnore
private ArrayList<Short> featureAnnualInspectionMark_arr;
@JsonIgnore
private Short featureAnnualInspectionMark_gt;
@JsonIgnore
private Short featureAnnualInspectionMark_lt;
@JsonIgnore
private Short featureAnnualInspectionMark_gte;
@JsonIgnore
private Short featureAnnualInspectionMark_lte;
@JsonIgnore
private Boolean featurePendant_null;
@JsonIgnore
private ArrayList<Short> featurePendant_arr;
@JsonIgnore
private Short featurePendant_gt;
@JsonIgnore
private Short featurePendant_lt;
@JsonIgnore
private Short featurePendant_gte;
@JsonIgnore
private Short featurePendant_lte;
@JsonIgnore
private Boolean featureDecoration_null;
@JsonIgnore
private ArrayList<Short> featureDecoration_arr;
@JsonIgnore
private Short featureDecoration_gt;
@JsonIgnore
private Short featureDecoration_lt;
@JsonIgnore
private Short featureDecoration_gte;
@JsonIgnore
private Short featureDecoration_lte;
@JsonIgnore
private Boolean featureSunShield_null;
@JsonIgnore
private ArrayList<Short> featureSunShield_arr;
@JsonIgnore
private Short featureSunShield_gt;
@JsonIgnore
private Short featureSunShield_lt;
@JsonIgnore
private Short featureSunShield_gte;
@JsonIgnore
private Short featureSunShield_lte;
@JsonIgnore
private Boolean xcycleType_null;
@JsonIgnore
private ArrayList<String> xcycleType_arr;
@JsonIgnore
private String xcycleType_like;
@JsonIgnore
private Boolean eventId_null;
@JsonIgnore
private ArrayList<String> eventId_arr;
@JsonIgnore
private String eventId_like;
@JsonIgnore
private Boolean specialType_null;
@JsonIgnore
private ArrayList<String> specialType_arr;
@JsonIgnore
private String specialType_like;
@JsonIgnore
private Boolean withHelmet_null;
@JsonIgnore
private ArrayList<Integer> withHelmet_arr;
@JsonIgnore
private Integer withHelmet_gt;
@JsonIgnore
private Integer withHelmet_lt;
@JsonIgnore
private Integer withHelmet_gte;
@JsonIgnore
private Integer withHelmet_lte;
@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 ArrayList<Integer> status_arr;
@JsonIgnore
private Integer status_gt;
@JsonIgnore
private Integer status_lt;
@JsonIgnore
private Integer status_gte;
@JsonIgnore
private Integer status_lte;
@JsonIgnore
private Boolean jsonData_null;
@JsonIgnore
private ArrayList<String> jsonData_arr;
@JsonIgnore
private String jsonData_like;
public TrafficVoBase() {
this(null);
}
public TrafficVoBase(Traffic traffic) {
if(traffic == null) {
traffic = new Traffic();
}
this.traffic = traffic;
}
@JsonIgnore
public Traffic getModel() {
return traffic;
}
public void setModel(Traffic traffic) {
this.traffic = traffic;
}
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 getEventCate_null() {
return eventCate_null;
}
public void setEventCate_null(Boolean eventCate_null) {
this.eventCate_null = eventCate_null;
}
public ArrayList<String> getEventCate_arr() {
return eventCate_arr;
}
public void setEventCate_arr(ArrayList<String> eventCate_arr) {
this.eventCate_arr = eventCate_arr;
}
public String getEventCate_like() {
return eventCate_like;
}
public void setEventCate_like(String eventCate_like) {
this.eventCate_like = eventCate_like;
}
public String getEventCate() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getEventCate();
}
public void setEventCate(String eventCate) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setEventCate(eventCate);
}
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 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 getPlateColor_null() {
return plateColor_null;
}
public void setPlateColor_null(Boolean plateColor_null) {
this.plateColor_null = plateColor_null;
}
public ArrayList<String> getPlateColor_arr() {
return plateColor_arr;
}
public void setPlateColor_arr(ArrayList<String> plateColor_arr) {
this.plateColor_arr = plateColor_arr;
}
public String getPlateColor_like() {
return plateColor_like;
}
public void setPlateColor_like(String plateColor_like) {
this.plateColor_like = plateColor_like;
}
public String getPlateColor() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getPlateColor();
}
public void setPlateColor(String plateColor) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setPlateColor(plateColor);
}
public Boolean getPlateNumber_null() {
return plateNumber_null;
}
public void setPlateNumber_null(Boolean plateNumber_null) {
this.plateNumber_null = plateNumber_null;
}
public ArrayList<String> getPlateNumber_arr() {
return plateNumber_arr;
}
public void setPlateNumber_arr(ArrayList<String> plateNumber_arr) {
this.plateNumber_arr = plateNumber_arr;
}
public String getPlateNumber_like() {
return plateNumber_like;
}
public void setPlateNumber_like(String plateNumber_like) {
this.plateNumber_like = plateNumber_like;
}
public String getPlateNumber() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getPlateNumber();
}
public void setPlateNumber(String plateNumber) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setPlateNumber(plateNumber);
}
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 getLaneCode_null() {
return laneCode_null;
}
public void setLaneCode_null(Boolean laneCode_null) {
this.laneCode_null = laneCode_null;
}
public ArrayList<String> getLaneCode_arr() {
return laneCode_arr;
}
public void setLaneCode_arr(ArrayList<String> laneCode_arr) {
this.laneCode_arr = laneCode_arr;
}
public String getLaneCode_like() {
return laneCode_like;
}
public void setLaneCode_like(String laneCode_like) {
this.laneCode_like = laneCode_like;
}
public String getLaneCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getLaneCode();
}
public void setLaneCode(String laneCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setLaneCode(laneCode);
}
public Boolean getDirectionCode_null() {
return directionCode_null;
}
public void setDirectionCode_null(Boolean directionCode_null) {
this.directionCode_null = directionCode_null;
}
public ArrayList<String> getDirectionCode_arr() {
return directionCode_arr;
}
public void setDirectionCode_arr(ArrayList<String> directionCode_arr) {
this.directionCode_arr = directionCode_arr;
}
public String getDirectionCode_like() {
return directionCode_like;
}
public void setDirectionCode_like(String directionCode_like) {
this.directionCode_like = directionCode_like;
}
public String getDirectionCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDirectionCode();
}
public void setDirectionCode(String directionCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDirectionCode(directionCode);
}
public Boolean getVehicleType_null() {
return vehicleType_null;
}
public void setVehicleType_null(Boolean vehicleType_null) {
this.vehicleType_null = vehicleType_null;
}
public ArrayList<String> getVehicleType_arr() {
return vehicleType_arr;
}
public void setVehicleType_arr(ArrayList<String> vehicleType_arr) {
this.vehicleType_arr = vehicleType_arr;
}
public String getVehicleType_like() {
return vehicleType_like;
}
public void setVehicleType_like(String vehicleType_like) {
this.vehicleType_like = vehicleType_like;
}
public String getVehicleType() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVehicleType();
}
public void setVehicleType(String vehicleType) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVehicleType(vehicleType);
}
public Boolean getVehicleColor_null() {
return vehicleColor_null;
}
public void setVehicleColor_null(Boolean vehicleColor_null) {
this.vehicleColor_null = vehicleColor_null;
}
public ArrayList<String> getVehicleColor_arr() {
return vehicleColor_arr;
}
public void setVehicleColor_arr(ArrayList<String> vehicleColor_arr) {
this.vehicleColor_arr = vehicleColor_arr;
}
public String getVehicleColor_like() {
return vehicleColor_like;
}
public void setVehicleColor_like(String vehicleColor_like) {
this.vehicleColor_like = vehicleColor_like;
}
public String getVehicleColor() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVehicleColor();
}
public void setVehicleColor(String vehicleColor) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVehicleColor(vehicleColor);
}
public Boolean getVehicleLogo_null() {
return vehicleLogo_null;
}
public void setVehicleLogo_null(Boolean vehicleLogo_null) {
this.vehicleLogo_null = vehicleLogo_null;
}
public ArrayList<String> getVehicleLogo_arr() {
return vehicleLogo_arr;
}
public void setVehicleLogo_arr(ArrayList<String> vehicleLogo_arr) {
this.vehicleLogo_arr = vehicleLogo_arr;
}
public String getVehicleLogo_like() {
return vehicleLogo_like;
}
public void setVehicleLogo_like(String vehicleLogo_like) {
this.vehicleLogo_like = vehicleLogo_like;
}
public String getVehicleLogo() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVehicleLogo();
}
public void setVehicleLogo(String vehicleLogo) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVehicleLogo(vehicleLogo);
}
public Boolean getIllegalCode_null() {
return illegalCode_null;
}
public void setIllegalCode_null(Boolean illegalCode_null) {
this.illegalCode_null = illegalCode_null;
}
public ArrayList<String> getIllegalCode_arr() {
return illegalCode_arr;
}
public void setIllegalCode_arr(ArrayList<String> illegalCode_arr) {
this.illegalCode_arr = illegalCode_arr;
}
public String getIllegalCode_like() {
return illegalCode_like;
}
public void setIllegalCode_like(String illegalCode_like) {
this.illegalCode_like = illegalCode_like;
}
public String getIllegalCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getIllegalCode();
}
public void setIllegalCode(String illegalCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setIllegalCode(illegalCode);
}
public Boolean getIllegalState_null() {
return illegalState_null;
}
public void setIllegalState_null(Boolean illegalState_null) {
this.illegalState_null = illegalState_null;
}
public ArrayList<Integer> getIllegalState_arr() {
return illegalState_arr;
}
public void setIllegalState_arr(ArrayList<Integer> illegalState_arr) {
this.illegalState_arr = illegalState_arr;
}
public Integer getIllegalState_gt() {
return illegalState_gt;
}
public void setIllegalState_gt(Integer illegalState_gt) {
this.illegalState_gt = illegalState_gt;
}
public Integer getIllegalState_lt() {
return illegalState_lt;
}
public void setIllegalState_lt(Integer illegalState_lt) {
this.illegalState_lt = illegalState_lt;
}
public Integer getIllegalState_gte() {
return illegalState_gte;
}
public void setIllegalState_gte(Integer illegalState_gte) {
this.illegalState_gte = illegalState_gte;
}
public Integer getIllegalState_lte() {
return illegalState_lte;
}
public void setIllegalState_lte(Integer illegalState_lte) {
this.illegalState_lte = illegalState_lte;
}
public Integer getIllegalState() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getIllegalState();
}
public void setIllegalState(Integer illegalState) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setIllegalState(illegalState);
}
public Boolean getFeatureAnnualInspectionMark_null() {
return featureAnnualInspectionMark_null;
}
public void setFeatureAnnualInspectionMark_null(Boolean featureAnnualInspectionMark_null) {
this.featureAnnualInspectionMark_null = featureAnnualInspectionMark_null;
}
public ArrayList<Short> getFeatureAnnualInspectionMark_arr() {
return featureAnnualInspectionMark_arr;
}
public void setFeatureAnnualInspectionMark_arr(ArrayList<Short> featureAnnualInspectionMark_arr) {
this.featureAnnualInspectionMark_arr = featureAnnualInspectionMark_arr;
}
public Short getFeatureAnnualInspectionMark_gt() {
return featureAnnualInspectionMark_gt;
}
public void setFeatureAnnualInspectionMark_gt(Short featureAnnualInspectionMark_gt) {
this.featureAnnualInspectionMark_gt = featureAnnualInspectionMark_gt;
}
public Short getFeatureAnnualInspectionMark_lt() {
return featureAnnualInspectionMark_lt;
}
public void setFeatureAnnualInspectionMark_lt(Short featureAnnualInspectionMark_lt) {
this.featureAnnualInspectionMark_lt = featureAnnualInspectionMark_lt;
}
public Short getFeatureAnnualInspectionMark_gte() {
return featureAnnualInspectionMark_gte;
}
public void setFeatureAnnualInspectionMark_gte(Short featureAnnualInspectionMark_gte) {
this.featureAnnualInspectionMark_gte = featureAnnualInspectionMark_gte;
}
public Short getFeatureAnnualInspectionMark_lte() {
return featureAnnualInspectionMark_lte;
}
public void setFeatureAnnualInspectionMark_lte(Short featureAnnualInspectionMark_lte) {
this.featureAnnualInspectionMark_lte = featureAnnualInspectionMark_lte;
}
public Short getFeatureAnnualInspectionMark() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFeatureAnnualInspectionMark();
}
public void setFeatureAnnualInspectionMark(Short featureAnnualInspectionMark) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFeatureAnnualInspectionMark(featureAnnualInspectionMark);
}
public Boolean getFeaturePendant_null() {
return featurePendant_null;
}
public void setFeaturePendant_null(Boolean featurePendant_null) {
this.featurePendant_null = featurePendant_null;
}
public ArrayList<Short> getFeaturePendant_arr() {
return featurePendant_arr;
}
public void setFeaturePendant_arr(ArrayList<Short> featurePendant_arr) {
this.featurePendant_arr = featurePendant_arr;
}
public Short getFeaturePendant_gt() {
return featurePendant_gt;
}
public void setFeaturePendant_gt(Short featurePendant_gt) {
this.featurePendant_gt = featurePendant_gt;
}
public Short getFeaturePendant_lt() {
return featurePendant_lt;
}
public void setFeaturePendant_lt(Short featurePendant_lt) {
this.featurePendant_lt = featurePendant_lt;
}
public Short getFeaturePendant_gte() {
return featurePendant_gte;
}
public void setFeaturePendant_gte(Short featurePendant_gte) {
this.featurePendant_gte = featurePendant_gte;
}
public Short getFeaturePendant_lte() {
return featurePendant_lte;
}
public void setFeaturePendant_lte(Short featurePendant_lte) {
this.featurePendant_lte = featurePendant_lte;
}
public Short getFeaturePendant() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFeaturePendant();
}
public void setFeaturePendant(Short featurePendant) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFeaturePendant(featurePendant);
}
public Boolean getFeatureDecoration_null() {
return featureDecoration_null;
}
public void setFeatureDecoration_null(Boolean featureDecoration_null) {
this.featureDecoration_null = featureDecoration_null;
}
public ArrayList<Short> getFeatureDecoration_arr() {
return featureDecoration_arr;
}
public void setFeatureDecoration_arr(ArrayList<Short> featureDecoration_arr) {
this.featureDecoration_arr = featureDecoration_arr;
}
public Short getFeatureDecoration_gt() {
return featureDecoration_gt;
}
public void setFeatureDecoration_gt(Short featureDecoration_gt) {
this.featureDecoration_gt = featureDecoration_gt;
}
public Short getFeatureDecoration_lt() {
return featureDecoration_lt;
}
public void setFeatureDecoration_lt(Short featureDecoration_lt) {
this.featureDecoration_lt = featureDecoration_lt;
}
public Short getFeatureDecoration_gte() {
return featureDecoration_gte;
}
public void setFeatureDecoration_gte(Short featureDecoration_gte) {
this.featureDecoration_gte = featureDecoration_gte;
}
public Short getFeatureDecoration_lte() {
return featureDecoration_lte;
}
public void setFeatureDecoration_lte(Short featureDecoration_lte) {
this.featureDecoration_lte = featureDecoration_lte;
}
public Short getFeatureDecoration() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFeatureDecoration();
}
public void setFeatureDecoration(Short featureDecoration) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFeatureDecoration(featureDecoration);
}
public Boolean getFeatureSunShield_null() {
return featureSunShield_null;
}
public void setFeatureSunShield_null(Boolean featureSunShield_null) {
this.featureSunShield_null = featureSunShield_null;
}
public ArrayList<Short> getFeatureSunShield_arr() {
return featureSunShield_arr;
}
public void setFeatureSunShield_arr(ArrayList<Short> featureSunShield_arr) {
this.featureSunShield_arr = featureSunShield_arr;
}
public Short getFeatureSunShield_gt() {
return featureSunShield_gt;
}
public void setFeatureSunShield_gt(Short featureSunShield_gt) {
this.featureSunShield_gt = featureSunShield_gt;
}
public Short getFeatureSunShield_lt() {
return featureSunShield_lt;
}
public void setFeatureSunShield_lt(Short featureSunShield_lt) {
this.featureSunShield_lt = featureSunShield_lt;
}
public Short getFeatureSunShield_gte() {
return featureSunShield_gte;
}
public void setFeatureSunShield_gte(Short featureSunShield_gte) {
this.featureSunShield_gte = featureSunShield_gte;
}
public Short getFeatureSunShield_lte() {
return featureSunShield_lte;
}
public void setFeatureSunShield_lte(Short featureSunShield_lte) {
this.featureSunShield_lte = featureSunShield_lte;
}
public Short getFeatureSunShield() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFeatureSunShield();
}
public void setFeatureSunShield(Short featureSunShield) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFeatureSunShield(featureSunShield);
}
public Boolean getXcycleType_null() {
return xcycleType_null;
}
public void setXcycleType_null(Boolean xcycleType_null) {
this.xcycleType_null = xcycleType_null;
}
public ArrayList<String> getXcycleType_arr() {
return xcycleType_arr;
}
public void setXcycleType_arr(ArrayList<String> xcycleType_arr) {
this.xcycleType_arr = xcycleType_arr;
}
public String getXcycleType_like() {
return xcycleType_like;
}
public void setXcycleType_like(String xcycleType_like) {
this.xcycleType_like = xcycleType_like;
}
public String getXcycleType() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getXcycleType();
}
public void setXcycleType(String xcycleType) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setXcycleType(xcycleType);
}
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 getSpecialType_null() {
return specialType_null;
}
public void setSpecialType_null(Boolean specialType_null) {
this.specialType_null = specialType_null;
}
public ArrayList<String> getSpecialType_arr() {
return specialType_arr;
}
public void setSpecialType_arr(ArrayList<String> specialType_arr) {
this.specialType_arr = specialType_arr;
}
public String getSpecialType_like() {
return specialType_like;
}
public void setSpecialType_like(String specialType_like) {
this.specialType_like = specialType_like;
}
public String getSpecialType() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getSpecialType();
}
public void setSpecialType(String specialType) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setSpecialType(specialType);
}
public Boolean getWithHelmet_null() {
return withHelmet_null;
}
public void setWithHelmet_null(Boolean withHelmet_null) {
this.withHelmet_null = withHelmet_null;
}
public ArrayList<Integer> getWithHelmet_arr() {
return withHelmet_arr;
}
public void setWithHelmet_arr(ArrayList<Integer> withHelmet_arr) {
this.withHelmet_arr = withHelmet_arr;
}
public Integer getWithHelmet_gt() {
return withHelmet_gt;
}
public void setWithHelmet_gt(Integer withHelmet_gt) {
this.withHelmet_gt = withHelmet_gt;
}
public Integer getWithHelmet_lt() {
return withHelmet_lt;
}
public void setWithHelmet_lt(Integer withHelmet_lt) {
this.withHelmet_lt = withHelmet_lt;
}
public Integer getWithHelmet_gte() {
return withHelmet_gte;
}
public void setWithHelmet_gte(Integer withHelmet_gte) {
this.withHelmet_gte = withHelmet_gte;
}
public Integer getWithHelmet_lte() {
return withHelmet_lte;
}
public void setWithHelmet_lte(Integer withHelmet_lte) {
this.withHelmet_lte = withHelmet_lte;
}
public Integer getWithHelmet() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getWithHelmet();
}
public void setWithHelmet(Integer withHelmet) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setWithHelmet(withHelmet);
}
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 ArrayList<Integer> getStatus_arr() {
return status_arr;
}
public void setStatus_arr(ArrayList<Integer> status_arr) {
this.status_arr = status_arr;
}
public Integer getStatus_gt() {
return status_gt;
}
public void setStatus_gt(Integer status_gt) {
this.status_gt = status_gt;
}
public Integer getStatus_lt() {
return status_lt;
}
public void setStatus_lt(Integer status_lt) {
this.status_lt = status_lt;
}
public Integer getStatus_gte() {
return status_gte;
}
public void setStatus_gte(Integer status_gte) {
this.status_gte = status_gte;
}
public Integer getStatus_lte() {
return status_lte;
}
public void setStatus_lte(Integer status_lte) {
this.status_lte = status_lte;
}
public Integer getStatus() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getStatus();
}
public void setStatus(Integer status) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setStatus(status);
}
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);
}
}