Outbound.java
2.35 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
package com.bsth.entity.excep;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 越界
*
*
*/
@Entity
@Table(name = "bsth_c_outbound")
public class Outbound {
@Id
@GeneratedValue
private Integer id;
/**
* 车辆编码
*/
private String vehicle;
/**
* 线路编码
*/
private Integer line;
/**
* 线路名称
*/
private String lineName;
/**
* 上下行(0 上行 , 1 下行 , -1 无效)
*/
private Integer upDown;
/**
* 经度
*/
private Float lon;
/**
* 纬度
*/
private Float lat;
/**
* 越界位置
*/
private String location;
/**
* 时间戳
*/
private Long timestamp;
/**
* 时间戳转换的时间
*/
private String timestampDate;
/**
* 时间
*/
private Date createDate;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getVehicle() {
return vehicle;
}
public void setVehicle(String vehicle) {
this.vehicle = vehicle;
}
public Integer getLine() {
return line;
}
public void setLine(Integer line) {
this.line = line;
}
public String getLineName() {
return lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
}
public Integer getUpDown() {
return upDown;
}
public void setUpDown(Integer upDown) {
this.upDown = upDown;
}
public Float getLon() {
return lon;
}
public void setLon(Float lon) {
this.lon = lon;
}
public Float getLat() {
return lat;
}
public void setLat(Float lat) {
this.lat = lat;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getTimestampDate() {
return timestampDate;
}
public void setTimestampDate(String timestampDate) {
this.timestampDate = timestampDate;
}
}