Traffic.java
6.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package com.viontech.fanxing.commons.model;
import com.viontech.fanxing.commons.base.BaseModel;
import java.util.Date;
public class Traffic extends BaseModel {
private Long id;
private String unid;
private Long taskId;
private String eventCate;
private String eventType;
private Date eventTime;
private String channelUnid;
private String plateColor;
private String plateNumber;
private String locationCode;
private String laneCode;
private String directionCode;
private String vehicleType;
private String illegalCode;
private Integer illegalState;
private String vehicleColor;
private String vehicleLogo;
private String annualInspectionMark;
private String pendant;
private String decoration;
private String sunShield;
private String xcycleType;
private String eventId;
private Date shootTime;
private String specialType;
private Integer withHelmet;
private String picName;
private String videoName;
private Integer status;
private String jsonData;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUnid() {
return unid;
}
public void setUnid(String unid) {
this.unid = unid == null ? null : unid.trim();
}
public Long getTaskId() {
return taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
}
public String getEventCate() {
return eventCate;
}
public void setEventCate(String eventCate) {
this.eventCate = eventCate == null ? null : eventCate.trim();
}
public String getEventType() {
return eventType;
}
public void setEventType(String eventType) {
this.eventType = eventType == null ? null : eventType.trim();
}
public Date getEventTime() {
return eventTime;
}
public void setEventTime(Date eventTime) {
this.eventTime = eventTime;
}
public String getChannelUnid() {
return channelUnid;
}
public void setChannelUnid(String channelUnid) {
this.channelUnid = channelUnid == null ? null : channelUnid.trim();
}
public String getPlateColor() {
return plateColor;
}
public void setPlateColor(String plateColor) {
this.plateColor = plateColor == null ? null : plateColor.trim();
}
public String getPlateNumber() {
return plateNumber;
}
public void setPlateNumber(String plateNumber) {
this.plateNumber = plateNumber == null ? null : plateNumber.trim();
}
public String getLocationCode() {
return locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode == null ? null : locationCode.trim();
}
public String getLaneCode() {
return laneCode;
}
public void setLaneCode(String laneCode) {
this.laneCode = laneCode == null ? null : laneCode.trim();
}
public String getDirectionCode() {
return directionCode;
}
public void setDirectionCode(String directionCode) {
this.directionCode = directionCode == null ? null : directionCode.trim();
}
public String getVehicleType() {
return vehicleType;
}
public void setVehicleType(String vehicleType) {
this.vehicleType = vehicleType == null ? null : vehicleType.trim();
}
public String getIllegalCode() {
return illegalCode;
}
public void setIllegalCode(String illegalCode) {
this.illegalCode = illegalCode == null ? null : illegalCode.trim();
}
public Integer getIllegalState() {
return illegalState;
}
public void setIllegalState(Integer illegalState) {
this.illegalState = illegalState;
}
public String getVehicleColor() {
return vehicleColor;
}
public void setVehicleColor(String vehicleColor) {
this.vehicleColor = vehicleColor == null ? null : vehicleColor.trim();
}
public String getVehicleLogo() {
return vehicleLogo;
}
public void setVehicleLogo(String vehicleLogo) {
this.vehicleLogo = vehicleLogo == null ? null : vehicleLogo.trim();
}
public String getAnnualInspectionMark() {
return annualInspectionMark;
}
public void setAnnualInspectionMark(String annualInspectionMark) {
this.annualInspectionMark = annualInspectionMark == null ? null : annualInspectionMark.trim();
}
public String getPendant() {
return pendant;
}
public void setPendant(String pendant) {
this.pendant = pendant == null ? null : pendant.trim();
}
public String getDecoration() {
return decoration;
}
public void setDecoration(String decoration) {
this.decoration = decoration == null ? null : decoration.trim();
}
public String getSunShield() {
return sunShield;
}
public void setSunShield(String sunShield) {
this.sunShield = sunShield == null ? null : sunShield.trim();
}
public String getXcycleType() {
return xcycleType;
}
public void setXcycleType(String xcycleType) {
this.xcycleType = xcycleType == null ? null : xcycleType.trim();
}
public String getEventId() {
return eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId == null ? null : eventId.trim();
}
public Date getShootTime() {
return shootTime;
}
public void setShootTime(Date shootTime) {
this.shootTime = shootTime;
}
public String getSpecialType() {
return specialType;
}
public void setSpecialType(String specialType) {
this.specialType = specialType == null ? null : specialType.trim();
}
public Integer getWithHelmet() {
return withHelmet;
}
public void setWithHelmet(Integer withHelmet) {
this.withHelmet = withHelmet;
}
public String getPicName() {
return picName;
}
public void setPicName(String picName) {
this.picName = picName == null ? null : picName.trim();
}
public String getVideoName() {
return videoName;
}
public void setVideoName(String videoName) {
this.videoName = videoName == null ? null : videoName.trim();
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getJsonData() {
return jsonData;
}
public void setJsonData(String jsonData) {
this.jsonData = jsonData == null ? null : jsonData.trim();
}
}