TrafficFlowEventModel.java
2.59 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
package com.viontech.fanxing.query.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.util.List;
/**
* Created by Administrator on 2018/8/9.
*/
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class TrafficFlowEventModel extends TrafficBaseModel {
private String unid;
private String event_id;
private Long Id;
//大车
private List<TrafficFlowDataModel> big_vehicle;
//小车
private List<TrafficFlowDataModel> small_vehicle;
//非机动车
private List<TrafficFlowDataModel> xcycle;
//行人
private List<TrafficFlowDataModel> pedestrian;
private Object json_data;
private String pic_name;
private String video_name;
private String event_dtime;
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 getEvent_id() {
return event_id;
}
public void setEvent_id(String event_id) {
this.event_id = event_id;
}
public List<TrafficFlowDataModel> getBig_vehicle() {
return big_vehicle;
}
public void setBig_vehicle(List<TrafficFlowDataModel> big_vehicle) {
this.big_vehicle = big_vehicle;
}
public List<TrafficFlowDataModel> getSmall_vehicle() {
return small_vehicle;
}
public void setSmall_vehicle(List<TrafficFlowDataModel> small_vehicle) {
this.small_vehicle = small_vehicle;
}
public List<TrafficFlowDataModel> getXcycle() {
return xcycle;
}
public void setXcycle(List<TrafficFlowDataModel> xcycle) {
this.xcycle = xcycle;
}
public List<TrafficFlowDataModel> getPedestrian() {
return pedestrian;
}
public void setPedestrian(List<TrafficFlowDataModel> pedestrian) {
this.pedestrian = pedestrian;
}
public Object getJson_data() {
return json_data;
}
public void setJson_data(Object json_data) {
this.json_data = json_data;
}
public String getEvent_dtime() {
return event_dtime;
}
public void setEvent_dtime(String event_dtime) {
this.event_dtime = event_dtime;
}
public Long getId() {
return Id;
}
public TrafficFlowEventModel setId(Long id) {
Id = id;
return this;
}
}