FlowDataVoBase.java
39.7 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
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
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.FlowData;
import java.util.ArrayList;
import java.util.Date;
public class FlowDataVoBase extends FlowData implements VoInterface<FlowData> {
private FlowData flowData;
@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 flowEventId_null;
@JsonIgnore
private ArrayList<Long> flowEventId_arr;
@JsonIgnore
private Long flowEventId_gt;
@JsonIgnore
private Long flowEventId_lt;
@JsonIgnore
private Long flowEventId_gte;
@JsonIgnore
private Long flowEventId_lte;
@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 detectionType_null;
@JsonIgnore
private ArrayList<String> detectionType_arr;
@JsonIgnore
private String detectionType_like;
@JsonIgnore
private Boolean roadCode_null;
@JsonIgnore
private ArrayList<String> roadCode_arr;
@JsonIgnore
private String roadCode_like;
@JsonIgnore
private Boolean directionCode_null;
@JsonIgnore
private ArrayList<String> directionCode_arr;
@JsonIgnore
private String directionCode_like;
@JsonIgnore
private Boolean sampleDura_null;
@JsonIgnore
private ArrayList<Long> sampleDura_arr;
@JsonIgnore
private Long sampleDura_gt;
@JsonIgnore
private Long sampleDura_lt;
@JsonIgnore
private Long sampleDura_gte;
@JsonIgnore
private Long sampleDura_lte;
@JsonIgnore
private Boolean sampleNum_null;
@JsonIgnore
private ArrayList<Float> sampleNum_arr;
@JsonIgnore
private Float sampleNum_gt;
@JsonIgnore
private Float sampleNum_lt;
@JsonIgnore
private Float sampleNum_gte;
@JsonIgnore
private Float sampleNum_lte;
@JsonIgnore
private Boolean velocity_null;
@JsonIgnore
private ArrayList<Float> velocity_arr;
@JsonIgnore
private Float velocity_gt;
@JsonIgnore
private Float velocity_lt;
@JsonIgnore
private Float velocity_gte;
@JsonIgnore
private Float velocity_lte;
@JsonIgnore
private Boolean velocityUnit_null;
@JsonIgnore
private ArrayList<String> velocityUnit_arr;
@JsonIgnore
private String velocityUnit_like;
@JsonIgnore
private Boolean occupy_null;
@JsonIgnore
private ArrayList<Float> occupy_arr;
@JsonIgnore
private Float occupy_gt;
@JsonIgnore
private Float occupy_lt;
@JsonIgnore
private Float occupy_gte;
@JsonIgnore
private Float occupy_lte;
@JsonIgnore
private Boolean distance_null;
@JsonIgnore
private ArrayList<Float> distance_arr;
@JsonIgnore
private Float distance_gt;
@JsonIgnore
private Float distance_lt;
@JsonIgnore
private Float distance_gte;
@JsonIgnore
private Float distance_lte;
@JsonIgnore
private Boolean queueLength_null;
@JsonIgnore
private ArrayList<Float> queueLength_arr;
@JsonIgnore
private Float queueLength_gt;
@JsonIgnore
private Float queueLength_lt;
@JsonIgnore
private Float queueLength_gte;
@JsonIgnore
private Float queueLength_lte;
@JsonIgnore
private Boolean regionId_null;
@JsonIgnore
private ArrayList<String> regionId_arr;
@JsonIgnore
private String regionId_like;
@JsonIgnore
private Boolean regionName_null;
@JsonIgnore
private ArrayList<String> regionName_arr;
@JsonIgnore
private String regionName_like;
@JsonIgnore
private Boolean area_null;
@JsonIgnore
private ArrayList<Float> area_arr;
@JsonIgnore
private Float area_gt;
@JsonIgnore
private Float area_lt;
@JsonIgnore
private Float area_gte;
@JsonIgnore
private Float area_lte;
@JsonIgnore
private Boolean density_null;
@JsonIgnore
private ArrayList<Float> density_arr;
@JsonIgnore
private Float density_gt;
@JsonIgnore
private Float density_lt;
@JsonIgnore
private Float density_gte;
@JsonIgnore
private Float density_lte;
@JsonIgnore
private Boolean sampleNumIn_null;
@JsonIgnore
private ArrayList<Float> sampleNumIn_arr;
@JsonIgnore
private Float sampleNumIn_gt;
@JsonIgnore
private Float sampleNumIn_lt;
@JsonIgnore
private Float sampleNumIn_gte;
@JsonIgnore
private Float sampleNumIn_lte;
@JsonIgnore
private Boolean sampleNumOut_null;
@JsonIgnore
private ArrayList<Float> sampleNumOut_arr;
@JsonIgnore
private Float sampleNumOut_gt;
@JsonIgnore
private Float sampleNumOut_lt;
@JsonIgnore
private Float sampleNumOut_gte;
@JsonIgnore
private Float sampleNumOut_lte;
@JsonIgnore
private Boolean distTime_null;
@JsonIgnore
private ArrayList<Float> distTime_arr;
@JsonIgnore
private Float distTime_gt;
@JsonIgnore
private Float distTime_lt;
@JsonIgnore
private Float distTime_gte;
@JsonIgnore
private Float distTime_lte;
@JsonIgnore
private Boolean timeOccupy_null;
@JsonIgnore
private ArrayList<Float> timeOccupy_arr;
@JsonIgnore
private Float timeOccupy_gt;
@JsonIgnore
private Float timeOccupy_lt;
@JsonIgnore
private Float timeOccupy_gte;
@JsonIgnore
private Float timeOccupy_lte;
@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 positionContent_null;
@JsonIgnore
private ArrayList<String> positionContent_arr;
@JsonIgnore
private String positionContent_like;
@JsonIgnore
private Boolean headContent_null;
@JsonIgnore
private ArrayList<String> headContent_arr;
@JsonIgnore
private String headContent_like;
public FlowDataVoBase() {
this(null);
}
public FlowDataVoBase(FlowData flowData) {
if(flowData == null) {
flowData = new FlowData();
}
this.flowData = flowData;
}
@JsonIgnore
public FlowData getModel() {
return flowData;
}
public void setModel(FlowData flowData) {
this.flowData = flowData;
}
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 getFlowEventId_null() {
return flowEventId_null;
}
public void setFlowEventId_null(Boolean flowEventId_null) {
this.flowEventId_null = flowEventId_null;
}
public ArrayList<Long> getFlowEventId_arr() {
return flowEventId_arr;
}
public void setFlowEventId_arr(ArrayList<Long> flowEventId_arr) {
this.flowEventId_arr = flowEventId_arr;
}
public Long getFlowEventId_gt() {
return flowEventId_gt;
}
public void setFlowEventId_gt(Long flowEventId_gt) {
this.flowEventId_gt = flowEventId_gt;
}
public Long getFlowEventId_lt() {
return flowEventId_lt;
}
public void setFlowEventId_lt(Long flowEventId_lt) {
this.flowEventId_lt = flowEventId_lt;
}
public Long getFlowEventId_gte() {
return flowEventId_gte;
}
public void setFlowEventId_gte(Long flowEventId_gte) {
this.flowEventId_gte = flowEventId_gte;
}
public Long getFlowEventId_lte() {
return flowEventId_lte;
}
public void setFlowEventId_lte(Long flowEventId_lte) {
this.flowEventId_lte = flowEventId_lte;
}
public Long getFlowEventId() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getFlowEventId();
}
public void setFlowEventId(Long flowEventId) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setFlowEventId(flowEventId);
}
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 getDetectionType_null() {
return detectionType_null;
}
public void setDetectionType_null(Boolean detectionType_null) {
this.detectionType_null = detectionType_null;
}
public ArrayList<String> getDetectionType_arr() {
return detectionType_arr;
}
public void setDetectionType_arr(ArrayList<String> detectionType_arr) {
this.detectionType_arr = detectionType_arr;
}
public String getDetectionType_like() {
return detectionType_like;
}
public void setDetectionType_like(String detectionType_like) {
this.detectionType_like = detectionType_like;
}
public String getDetectionType() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDetectionType();
}
public void setDetectionType(String detectionType) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDetectionType(detectionType);
}
public Boolean getRoadCode_null() {
return roadCode_null;
}
public void setRoadCode_null(Boolean roadCode_null) {
this.roadCode_null = roadCode_null;
}
public ArrayList<String> getRoadCode_arr() {
return roadCode_arr;
}
public void setRoadCode_arr(ArrayList<String> roadCode_arr) {
this.roadCode_arr = roadCode_arr;
}
public String getRoadCode_like() {
return roadCode_like;
}
public void setRoadCode_like(String roadCode_like) {
this.roadCode_like = roadCode_like;
}
public String getRoadCode() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getRoadCode();
}
public void setRoadCode(String roadCode) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setRoadCode(roadCode);
}
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 getSampleDura_null() {
return sampleDura_null;
}
public void setSampleDura_null(Boolean sampleDura_null) {
this.sampleDura_null = sampleDura_null;
}
public ArrayList<Long> getSampleDura_arr() {
return sampleDura_arr;
}
public void setSampleDura_arr(ArrayList<Long> sampleDura_arr) {
this.sampleDura_arr = sampleDura_arr;
}
public Long getSampleDura_gt() {
return sampleDura_gt;
}
public void setSampleDura_gt(Long sampleDura_gt) {
this.sampleDura_gt = sampleDura_gt;
}
public Long getSampleDura_lt() {
return sampleDura_lt;
}
public void setSampleDura_lt(Long sampleDura_lt) {
this.sampleDura_lt = sampleDura_lt;
}
public Long getSampleDura_gte() {
return sampleDura_gte;
}
public void setSampleDura_gte(Long sampleDura_gte) {
this.sampleDura_gte = sampleDura_gte;
}
public Long getSampleDura_lte() {
return sampleDura_lte;
}
public void setSampleDura_lte(Long sampleDura_lte) {
this.sampleDura_lte = sampleDura_lte;
}
public Long getSampleDura() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getSampleDura();
}
public void setSampleDura(Long sampleDura) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setSampleDura(sampleDura);
}
public Boolean getSampleNum_null() {
return sampleNum_null;
}
public void setSampleNum_null(Boolean sampleNum_null) {
this.sampleNum_null = sampleNum_null;
}
public ArrayList<Float> getSampleNum_arr() {
return sampleNum_arr;
}
public void setSampleNum_arr(ArrayList<Float> sampleNum_arr) {
this.sampleNum_arr = sampleNum_arr;
}
public Float getSampleNum_gt() {
return sampleNum_gt;
}
public void setSampleNum_gt(Float sampleNum_gt) {
this.sampleNum_gt = sampleNum_gt;
}
public Float getSampleNum_lt() {
return sampleNum_lt;
}
public void setSampleNum_lt(Float sampleNum_lt) {
this.sampleNum_lt = sampleNum_lt;
}
public Float getSampleNum_gte() {
return sampleNum_gte;
}
public void setSampleNum_gte(Float sampleNum_gte) {
this.sampleNum_gte = sampleNum_gte;
}
public Float getSampleNum_lte() {
return sampleNum_lte;
}
public void setSampleNum_lte(Float sampleNum_lte) {
this.sampleNum_lte = sampleNum_lte;
}
public Float getSampleNum() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getSampleNum();
}
public void setSampleNum(Float sampleNum) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setSampleNum(sampleNum);
}
public Boolean getVelocity_null() {
return velocity_null;
}
public void setVelocity_null(Boolean velocity_null) {
this.velocity_null = velocity_null;
}
public ArrayList<Float> getVelocity_arr() {
return velocity_arr;
}
public void setVelocity_arr(ArrayList<Float> velocity_arr) {
this.velocity_arr = velocity_arr;
}
public Float getVelocity_gt() {
return velocity_gt;
}
public void setVelocity_gt(Float velocity_gt) {
this.velocity_gt = velocity_gt;
}
public Float getVelocity_lt() {
return velocity_lt;
}
public void setVelocity_lt(Float velocity_lt) {
this.velocity_lt = velocity_lt;
}
public Float getVelocity_gte() {
return velocity_gte;
}
public void setVelocity_gte(Float velocity_gte) {
this.velocity_gte = velocity_gte;
}
public Float getVelocity_lte() {
return velocity_lte;
}
public void setVelocity_lte(Float velocity_lte) {
this.velocity_lte = velocity_lte;
}
public Float getVelocity() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVelocity();
}
public void setVelocity(Float velocity) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVelocity(velocity);
}
public Boolean getVelocityUnit_null() {
return velocityUnit_null;
}
public void setVelocityUnit_null(Boolean velocityUnit_null) {
this.velocityUnit_null = velocityUnit_null;
}
public ArrayList<String> getVelocityUnit_arr() {
return velocityUnit_arr;
}
public void setVelocityUnit_arr(ArrayList<String> velocityUnit_arr) {
this.velocityUnit_arr = velocityUnit_arr;
}
public String getVelocityUnit_like() {
return velocityUnit_like;
}
public void setVelocityUnit_like(String velocityUnit_like) {
this.velocityUnit_like = velocityUnit_like;
}
public String getVelocityUnit() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getVelocityUnit();
}
public void setVelocityUnit(String velocityUnit) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setVelocityUnit(velocityUnit);
}
public Boolean getOccupy_null() {
return occupy_null;
}
public void setOccupy_null(Boolean occupy_null) {
this.occupy_null = occupy_null;
}
public ArrayList<Float> getOccupy_arr() {
return occupy_arr;
}
public void setOccupy_arr(ArrayList<Float> occupy_arr) {
this.occupy_arr = occupy_arr;
}
public Float getOccupy_gt() {
return occupy_gt;
}
public void setOccupy_gt(Float occupy_gt) {
this.occupy_gt = occupy_gt;
}
public Float getOccupy_lt() {
return occupy_lt;
}
public void setOccupy_lt(Float occupy_lt) {
this.occupy_lt = occupy_lt;
}
public Float getOccupy_gte() {
return occupy_gte;
}
public void setOccupy_gte(Float occupy_gte) {
this.occupy_gte = occupy_gte;
}
public Float getOccupy_lte() {
return occupy_lte;
}
public void setOccupy_lte(Float occupy_lte) {
this.occupy_lte = occupy_lte;
}
public Float getOccupy() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getOccupy();
}
public void setOccupy(Float occupy) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setOccupy(occupy);
}
public Boolean getDistance_null() {
return distance_null;
}
public void setDistance_null(Boolean distance_null) {
this.distance_null = distance_null;
}
public ArrayList<Float> getDistance_arr() {
return distance_arr;
}
public void setDistance_arr(ArrayList<Float> distance_arr) {
this.distance_arr = distance_arr;
}
public Float getDistance_gt() {
return distance_gt;
}
public void setDistance_gt(Float distance_gt) {
this.distance_gt = distance_gt;
}
public Float getDistance_lt() {
return distance_lt;
}
public void setDistance_lt(Float distance_lt) {
this.distance_lt = distance_lt;
}
public Float getDistance_gte() {
return distance_gte;
}
public void setDistance_gte(Float distance_gte) {
this.distance_gte = distance_gte;
}
public Float getDistance_lte() {
return distance_lte;
}
public void setDistance_lte(Float distance_lte) {
this.distance_lte = distance_lte;
}
public Float getDistance() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDistance();
}
public void setDistance(Float distance) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDistance(distance);
}
public Boolean getQueueLength_null() {
return queueLength_null;
}
public void setQueueLength_null(Boolean queueLength_null) {
this.queueLength_null = queueLength_null;
}
public ArrayList<Float> getQueueLength_arr() {
return queueLength_arr;
}
public void setQueueLength_arr(ArrayList<Float> queueLength_arr) {
this.queueLength_arr = queueLength_arr;
}
public Float getQueueLength_gt() {
return queueLength_gt;
}
public void setQueueLength_gt(Float queueLength_gt) {
this.queueLength_gt = queueLength_gt;
}
public Float getQueueLength_lt() {
return queueLength_lt;
}
public void setQueueLength_lt(Float queueLength_lt) {
this.queueLength_lt = queueLength_lt;
}
public Float getQueueLength_gte() {
return queueLength_gte;
}
public void setQueueLength_gte(Float queueLength_gte) {
this.queueLength_gte = queueLength_gte;
}
public Float getQueueLength_lte() {
return queueLength_lte;
}
public void setQueueLength_lte(Float queueLength_lte) {
this.queueLength_lte = queueLength_lte;
}
public Float getQueueLength() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getQueueLength();
}
public void setQueueLength(Float queueLength) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setQueueLength(queueLength);
}
public Boolean getRegionId_null() {
return regionId_null;
}
public void setRegionId_null(Boolean regionId_null) {
this.regionId_null = regionId_null;
}
public ArrayList<String> getRegionId_arr() {
return regionId_arr;
}
public void setRegionId_arr(ArrayList<String> regionId_arr) {
this.regionId_arr = regionId_arr;
}
public String getRegionId_like() {
return regionId_like;
}
public void setRegionId_like(String regionId_like) {
this.regionId_like = regionId_like;
}
public String getRegionId() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getRegionId();
}
public void setRegionId(String regionId) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setRegionId(regionId);
}
public Boolean getRegionName_null() {
return regionName_null;
}
public void setRegionName_null(Boolean regionName_null) {
this.regionName_null = regionName_null;
}
public ArrayList<String> getRegionName_arr() {
return regionName_arr;
}
public void setRegionName_arr(ArrayList<String> regionName_arr) {
this.regionName_arr = regionName_arr;
}
public String getRegionName_like() {
return regionName_like;
}
public void setRegionName_like(String regionName_like) {
this.regionName_like = regionName_like;
}
public String getRegionName() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getRegionName();
}
public void setRegionName(String regionName) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setRegionName(regionName);
}
public Boolean getArea_null() {
return area_null;
}
public void setArea_null(Boolean area_null) {
this.area_null = area_null;
}
public ArrayList<Float> getArea_arr() {
return area_arr;
}
public void setArea_arr(ArrayList<Float> area_arr) {
this.area_arr = area_arr;
}
public Float getArea_gt() {
return area_gt;
}
public void setArea_gt(Float area_gt) {
this.area_gt = area_gt;
}
public Float getArea_lt() {
return area_lt;
}
public void setArea_lt(Float area_lt) {
this.area_lt = area_lt;
}
public Float getArea_gte() {
return area_gte;
}
public void setArea_gte(Float area_gte) {
this.area_gte = area_gte;
}
public Float getArea_lte() {
return area_lte;
}
public void setArea_lte(Float area_lte) {
this.area_lte = area_lte;
}
public Float getArea() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getArea();
}
public void setArea(Float area) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setArea(area);
}
public Boolean getDensity_null() {
return density_null;
}
public void setDensity_null(Boolean density_null) {
this.density_null = density_null;
}
public ArrayList<Float> getDensity_arr() {
return density_arr;
}
public void setDensity_arr(ArrayList<Float> density_arr) {
this.density_arr = density_arr;
}
public Float getDensity_gt() {
return density_gt;
}
public void setDensity_gt(Float density_gt) {
this.density_gt = density_gt;
}
public Float getDensity_lt() {
return density_lt;
}
public void setDensity_lt(Float density_lt) {
this.density_lt = density_lt;
}
public Float getDensity_gte() {
return density_gte;
}
public void setDensity_gte(Float density_gte) {
this.density_gte = density_gte;
}
public Float getDensity_lte() {
return density_lte;
}
public void setDensity_lte(Float density_lte) {
this.density_lte = density_lte;
}
public Float getDensity() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDensity();
}
public void setDensity(Float density) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDensity(density);
}
public Boolean getSampleNumIn_null() {
return sampleNumIn_null;
}
public void setSampleNumIn_null(Boolean sampleNumIn_null) {
this.sampleNumIn_null = sampleNumIn_null;
}
public ArrayList<Float> getSampleNumIn_arr() {
return sampleNumIn_arr;
}
public void setSampleNumIn_arr(ArrayList<Float> sampleNumIn_arr) {
this.sampleNumIn_arr = sampleNumIn_arr;
}
public Float getSampleNumIn_gt() {
return sampleNumIn_gt;
}
public void setSampleNumIn_gt(Float sampleNumIn_gt) {
this.sampleNumIn_gt = sampleNumIn_gt;
}
public Float getSampleNumIn_lt() {
return sampleNumIn_lt;
}
public void setSampleNumIn_lt(Float sampleNumIn_lt) {
this.sampleNumIn_lt = sampleNumIn_lt;
}
public Float getSampleNumIn_gte() {
return sampleNumIn_gte;
}
public void setSampleNumIn_gte(Float sampleNumIn_gte) {
this.sampleNumIn_gte = sampleNumIn_gte;
}
public Float getSampleNumIn_lte() {
return sampleNumIn_lte;
}
public void setSampleNumIn_lte(Float sampleNumIn_lte) {
this.sampleNumIn_lte = sampleNumIn_lte;
}
public Float getSampleNumIn() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getSampleNumIn();
}
public void setSampleNumIn(Float sampleNumIn) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setSampleNumIn(sampleNumIn);
}
public Boolean getSampleNumOut_null() {
return sampleNumOut_null;
}
public void setSampleNumOut_null(Boolean sampleNumOut_null) {
this.sampleNumOut_null = sampleNumOut_null;
}
public ArrayList<Float> getSampleNumOut_arr() {
return sampleNumOut_arr;
}
public void setSampleNumOut_arr(ArrayList<Float> sampleNumOut_arr) {
this.sampleNumOut_arr = sampleNumOut_arr;
}
public Float getSampleNumOut_gt() {
return sampleNumOut_gt;
}
public void setSampleNumOut_gt(Float sampleNumOut_gt) {
this.sampleNumOut_gt = sampleNumOut_gt;
}
public Float getSampleNumOut_lt() {
return sampleNumOut_lt;
}
public void setSampleNumOut_lt(Float sampleNumOut_lt) {
this.sampleNumOut_lt = sampleNumOut_lt;
}
public Float getSampleNumOut_gte() {
return sampleNumOut_gte;
}
public void setSampleNumOut_gte(Float sampleNumOut_gte) {
this.sampleNumOut_gte = sampleNumOut_gte;
}
public Float getSampleNumOut_lte() {
return sampleNumOut_lte;
}
public void setSampleNumOut_lte(Float sampleNumOut_lte) {
this.sampleNumOut_lte = sampleNumOut_lte;
}
public Float getSampleNumOut() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getSampleNumOut();
}
public void setSampleNumOut(Float sampleNumOut) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setSampleNumOut(sampleNumOut);
}
public Boolean getDistTime_null() {
return distTime_null;
}
public void setDistTime_null(Boolean distTime_null) {
this.distTime_null = distTime_null;
}
public ArrayList<Float> getDistTime_arr() {
return distTime_arr;
}
public void setDistTime_arr(ArrayList<Float> distTime_arr) {
this.distTime_arr = distTime_arr;
}
public Float getDistTime_gt() {
return distTime_gt;
}
public void setDistTime_gt(Float distTime_gt) {
this.distTime_gt = distTime_gt;
}
public Float getDistTime_lt() {
return distTime_lt;
}
public void setDistTime_lt(Float distTime_lt) {
this.distTime_lt = distTime_lt;
}
public Float getDistTime_gte() {
return distTime_gte;
}
public void setDistTime_gte(Float distTime_gte) {
this.distTime_gte = distTime_gte;
}
public Float getDistTime_lte() {
return distTime_lte;
}
public void setDistTime_lte(Float distTime_lte) {
this.distTime_lte = distTime_lte;
}
public Float getDistTime() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getDistTime();
}
public void setDistTime(Float distTime) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setDistTime(distTime);
}
public Boolean getTimeOccupy_null() {
return timeOccupy_null;
}
public void setTimeOccupy_null(Boolean timeOccupy_null) {
this.timeOccupy_null = timeOccupy_null;
}
public ArrayList<Float> getTimeOccupy_arr() {
return timeOccupy_arr;
}
public void setTimeOccupy_arr(ArrayList<Float> timeOccupy_arr) {
this.timeOccupy_arr = timeOccupy_arr;
}
public Float getTimeOccupy_gt() {
return timeOccupy_gt;
}
public void setTimeOccupy_gt(Float timeOccupy_gt) {
this.timeOccupy_gt = timeOccupy_gt;
}
public Float getTimeOccupy_lt() {
return timeOccupy_lt;
}
public void setTimeOccupy_lt(Float timeOccupy_lt) {
this.timeOccupy_lt = timeOccupy_lt;
}
public Float getTimeOccupy_gte() {
return timeOccupy_gte;
}
public void setTimeOccupy_gte(Float timeOccupy_gte) {
this.timeOccupy_gte = timeOccupy_gte;
}
public Float getTimeOccupy_lte() {
return timeOccupy_lte;
}
public void setTimeOccupy_lte(Float timeOccupy_lte) {
this.timeOccupy_lte = timeOccupy_lte;
}
public Float getTimeOccupy() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getTimeOccupy();
}
public void setTimeOccupy(Float timeOccupy) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setTimeOccupy(timeOccupy);
}
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 getPositionContent_null() {
return positionContent_null;
}
public void setPositionContent_null(Boolean positionContent_null) {
this.positionContent_null = positionContent_null;
}
public ArrayList<String> getPositionContent_arr() {
return positionContent_arr;
}
public void setPositionContent_arr(ArrayList<String> positionContent_arr) {
this.positionContent_arr = positionContent_arr;
}
public String getPositionContent_like() {
return positionContent_like;
}
public void setPositionContent_like(String positionContent_like) {
this.positionContent_like = positionContent_like;
}
public String getPositionContent() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getPositionContent();
}
public void setPositionContent(String positionContent) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setPositionContent(positionContent);
}
public Boolean getHeadContent_null() {
return headContent_null;
}
public void setHeadContent_null(Boolean headContent_null) {
this.headContent_null = headContent_null;
}
public ArrayList<String> getHeadContent_arr() {
return headContent_arr;
}
public void setHeadContent_arr(ArrayList<String> headContent_arr) {
this.headContent_arr = headContent_arr;
}
public String getHeadContent_like() {
return headContent_like;
}
public void setHeadContent_like(String headContent_like) {
this.headContent_like = headContent_like;
}
public String getHeadContent() {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
return this.getModel().getHeadContent();
}
public void setHeadContent(String headContent) {
if(getModel() == null ){
throw new RuntimeException("model is null");
}
this.getModel().setHeadContent(headContent);
}
}