TrafficModel.java
8.6 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
package com.viontech.vo.traffic;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class TrafficModel extends TrafficBaseModel {
private String unid;
private String plate_color_code;
private String plate_text;
private String location_code;
private String lane_code;
private String direction_code;
private String body_type_code;
private String illegal_code;
private String[] illegal_codes;
private String illegal_state;
private String body_color_code;
private String body_logo_code;
private Boolean refinedFeature_rAnnualInspection;
private Boolean refinedFeature_rDecoration;
private Boolean refinedFeature_rPendant;
private Boolean refinedFeature_rSunshading;
private String event_dt__gte;
private String event_dt__lt;
private List location_codes;
private List body_type_codes;
private List task_ids;
// 行人事件
private String sex;
private String upbody_color;
private String lobody_color;
private List<FaceModel> faces;
// 非机动车事件 车辆类型,motorcycle, bicycle, tricycle共三种
private String xcycle_type;
private List event_types;
private List unids;
private String event_id;
private Integer offset;
private Integer limit;
private String shoot_dt;
private String special_type;
private String subtaskIds;
private Object json_data;
private String pic_name;
private String video_name;
private Integer with_hats;
private String shoot_dtime;
private Integer company;
public Integer getCompany() {
return company;
}
public TrafficModel setCompany(Integer company) {
this.company = company;
return this;
}
public String getPic_name() {
return pic_name;
}
public void setPic_name(String pic_name) {
this.pic_name = pic_name;
}
public String getVideo_name() {
return video_name;
}
public void setVideo_name(String video_name) {
this.video_name = video_name;
}
public String getUnid() {
return unid;
}
public void setUnid(String unid) {
this.unid = unid;
}
public String getPlate_color_code() {
return plate_color_code;
}
public void setPlate_color_code(String plate_color_code) {
this.plate_color_code = plate_color_code;
}
public String getPlate_text() {
return plate_text;
}
public void setPlate_text(String plate_text) {
this.plate_text = plate_text;
}
public String getLocation_code() {
return location_code;
}
public void setLocation_code(String location_code) {
this.location_code = location_code;
}
public String getLane_code() {
return lane_code;
}
public void setLane_code(String lane_code) {
this.lane_code = lane_code;
}
public String getDirection_code() {
return direction_code;
}
public void setDirection_code(String direction_code) {
this.direction_code = direction_code;
}
public String getBody_type_code() {
return body_type_code;
}
public void setBody_type_code(String body_type_code) {
this.body_type_code = body_type_code;
}
public String getIllegal_code() {
return illegal_code;
}
public void setIllegal_code(String illegal_code) {
this.illegal_code = illegal_code;
}
public String getIllegal_state() {
return illegal_state;
}
public void setIllegal_state(String illegal_state) {
this.illegal_state = illegal_state;
}
public String getBody_color_code() {
return body_color_code;
}
public void setBody_color_code(String body_color_code) {
this.body_color_code = body_color_code;
}
public String getBody_logo_code() {
return body_logo_code;
}
public void setBody_logo_code(String body_logo_code) {
this.body_logo_code = body_logo_code;
}
public Boolean getRefinedFeature_rAnnualInspection() {
return refinedFeature_rAnnualInspection;
}
public void setRefinedFeature_rAnnualInspection(Boolean refinedFeature_rAnnualInspection) {
this.refinedFeature_rAnnualInspection = refinedFeature_rAnnualInspection;
}
public Boolean getRefinedFeature_rDecoration() {
return refinedFeature_rDecoration;
}
public void setRefinedFeature_rDecoration(Boolean refinedFeature_rDecoration) {
this.refinedFeature_rDecoration = refinedFeature_rDecoration;
}
public Boolean getRefinedFeature_rPendant() {
return refinedFeature_rPendant;
}
public void setRefinedFeature_rPendant(Boolean refinedFeature_rPendant) {
this.refinedFeature_rPendant = refinedFeature_rPendant;
}
public Boolean getRefinedFeature_rSunshading() {
return refinedFeature_rSunshading;
}
public void setRefinedFeature_rSunshading(Boolean refinedFeature_rSunshading) {
this.refinedFeature_rSunshading = refinedFeature_rSunshading;
}
public String getEvent_dt__gte() {
return event_dt__gte;
}
public void setEvent_dt__gte(String event_dt__gte) {
this.event_dt__gte = event_dt__gte;
}
public String getEvent_dt__lt() {
return event_dt__lt;
}
public void setEvent_dt__lt(String event_dt__lt) {
this.event_dt__lt = event_dt__lt;
}
public List getLocation_codes() {
return location_codes;
}
public void setLocation_codes(List location_codes) {
this.location_codes = location_codes;
}
public List getBody_type_codes() {
return body_type_codes;
}
public void setBody_type_codes(List body_type_codes) {
this.body_type_codes = body_type_codes;
}
public List getTask_ids() {
return task_ids;
}
public void setTask_ids(List task_ids) {
this.task_ids = task_ids;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getUpbody_color() {
return upbody_color;
}
public void setUpbody_color(String upbody_color) {
this.upbody_color = upbody_color;
}
public String getLobody_color() {
return lobody_color;
}
public void setLobody_color(String lobody_color) {
this.lobody_color = lobody_color;
}
public List<FaceModel> getFaces() {
return faces;
}
public void setFaces(List<FaceModel> faces) {
this.faces = faces;
}
public String getXcycle_type() {
return xcycle_type;
}
public void setXcycle_type(String xcycle_type) {
this.xcycle_type = xcycle_type;
}
public List getEvent_types() {
return event_types;
}
public void setEvent_types(List event_types) {
this.event_types = event_types;
}
public List getUnids() {
return unids;
}
public void setUnids(List unids) {
this.unids = unids;
}
public String getEvent_id() {
return event_id;
}
public void setEvent_id(String event_id) {
this.event_id = event_id;
}
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public String getShoot_dt() {
return shoot_dt;
}
public void setShoot_dt(String shoot_dt) {
this.shoot_dt = shoot_dt;
}
public String[] getIllegal_codes() {
return illegal_codes;
}
public void setIllegal_codes(String[] illegal_codes) {
this.illegal_codes = illegal_codes;
}
public String getSpecial_type() {
return special_type;
}
public void setSpecial_type(String special_type) {
this.special_type = special_type;
}
public String getSubtaskIds() {
return subtaskIds;
}
public void setSubtaskIds(String subtaskIds) {
this.subtaskIds = subtaskIds;
}
public Object getJson_data() {
return json_data;
}
public void setJson_data(Object json_data) {
this.json_data = json_data;
}
public Integer getWith_hats() {
return with_hats;
}
public void setWith_hats(Integer with_hats) {
this.with_hats = with_hats;
}
public String getShoot_dtime() {
return shoot_dtime;
}
public void setShoot_dtime(String shoot_dtime) {
this.shoot_dtime = shoot_dtime;
}
}