FlowData.java
5.25 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
package com.viontech.fanxing.commons.model;
import com.viontech.fanxing.commons.base.BaseModel;
import java.util.Date;
public class FlowData extends BaseModel {
private Long id;
private Date eventTime;
private String unid;
private Long flowEventId;
private Long taskId;
private String detectionType;
private String roadCode;
private String directionCode;
private Long sampleDura;
private Float sampleNum;
private Float velocity;
private String velocityUnit;
private Float occupy;
private Float distance;
private Float queueLength;
private String regionId;
private String regionName;
private Float area;
private Float density;
private Float sampleNumIn;
private Float sampleNumOut;
private Float distTime;
private Float timeOccupy;
private Integer status;
private String positionContent;
private String headContent;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Date getEventTime() {
return eventTime;
}
public void setEventTime(Date eventTime) {
this.eventTime = eventTime;
}
public String getUnid() {
return unid;
}
public void setUnid(String unid) {
this.unid = unid == null ? null : unid.trim();
}
public Long getFlowEventId() {
return flowEventId;
}
public void setFlowEventId(Long flowEventId) {
this.flowEventId = flowEventId;
}
public Long getTaskId() {
return taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
}
public String getDetectionType() {
return detectionType;
}
public void setDetectionType(String detectionType) {
this.detectionType = detectionType == null ? null : detectionType.trim();
}
public String getRoadCode() {
return roadCode;
}
public void setRoadCode(String roadCode) {
this.roadCode = roadCode == null ? null : roadCode.trim();
}
public String getDirectionCode() {
return directionCode;
}
public void setDirectionCode(String directionCode) {
this.directionCode = directionCode == null ? null : directionCode.trim();
}
public Long getSampleDura() {
return sampleDura;
}
public void setSampleDura(Long sampleDura) {
this.sampleDura = sampleDura;
}
public Float getSampleNum() {
return sampleNum;
}
public void setSampleNum(Float sampleNum) {
this.sampleNum = sampleNum;
}
public Float getVelocity() {
return velocity;
}
public void setVelocity(Float velocity) {
this.velocity = velocity;
}
public String getVelocityUnit() {
return velocityUnit;
}
public void setVelocityUnit(String velocityUnit) {
this.velocityUnit = velocityUnit == null ? null : velocityUnit.trim();
}
public Float getOccupy() {
return occupy;
}
public void setOccupy(Float occupy) {
this.occupy = occupy;
}
public Float getDistance() {
return distance;
}
public void setDistance(Float distance) {
this.distance = distance;
}
public Float getQueueLength() {
return queueLength;
}
public void setQueueLength(Float queueLength) {
this.queueLength = queueLength;
}
public String getRegionId() {
return regionId;
}
public void setRegionId(String regionId) {
this.regionId = regionId == null ? null : regionId.trim();
}
public String getRegionName() {
return regionName;
}
public void setRegionName(String regionName) {
this.regionName = regionName == null ? null : regionName.trim();
}
public Float getArea() {
return area;
}
public void setArea(Float area) {
this.area = area;
}
public Float getDensity() {
return density;
}
public void setDensity(Float density) {
this.density = density;
}
public Float getSampleNumIn() {
return sampleNumIn;
}
public void setSampleNumIn(Float sampleNumIn) {
this.sampleNumIn = sampleNumIn;
}
public Float getSampleNumOut() {
return sampleNumOut;
}
public void setSampleNumOut(Float sampleNumOut) {
this.sampleNumOut = sampleNumOut;
}
public Float getDistTime() {
return distTime;
}
public void setDistTime(Float distTime) {
this.distTime = distTime;
}
public Float getTimeOccupy() {
return timeOccupy;
}
public void setTimeOccupy(Float timeOccupy) {
this.timeOccupy = timeOccupy;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getPositionContent() {
return positionContent;
}
public void setPositionContent(String positionContent) {
this.positionContent = positionContent == null ? null : positionContent.trim();
}
public String getHeadContent() {
return headContent;
}
public void setHeadContent(String headContent) {
this.headContent = headContent == null ? null : headContent.trim();
}
}