StationMatchData.java
3.55 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
package com.bsth.entity;
/**
* @author YouRuiFeng
* @Description: TODO(站点匹配数据类)
* @date 2020/12/29/029 11:19
*/
public class StationMatchData {
// 博协站点编码
private String StopId;
// 经过的线路列表
private String LineList;
// 城建坐标点
private String CityCoordinate;
// 百度经纬度坐标
private String bJwpoints;
// 站点地理位置WGS坐标经度
private Float gLonx;
// 站点地理位置WGS坐标纬度
private Float gLaty;
// 线路名称
private String RoadLine;
// 上海市线路编码
private String LineStandardCode;
// 站点名称
private String StationName;
private String stationName2;
// 站点行业编码
private String StationStandardCode;
// 上下行
private int UpStream;
// 站级,路由顺序
private String LevelId;
// 站点类型(B起点站,Z中途站,E终点站)
private String StationType;
// 站点朝向
private String PathDirection;
public String getStopId() {
return StopId;
}
public void setStopId(String stopId) {
StopId = stopId;
}
public String getLineList() {
return LineList;
}
public void setLineList(String lineList) {
LineList = lineList;
}
public String getCityCoordinate() {
return CityCoordinate;
}
public void setCityCoordinate(String cityCoordinate) {
CityCoordinate = cityCoordinate;
}
public String getbJwpoints() {
return bJwpoints;
}
public void setbJwpoints(String bJwpoints) {
this.bJwpoints = bJwpoints;
}
public Float getgLonx() {
return gLonx;
}
public void setgLonx(Float gLonx) {
this.gLonx = gLonx;
}
public Float getgLaty() {
return gLaty;
}
public void setgLaty(Float gLaty) {
this.gLaty = gLaty;
}
public String getRoadLine() {
return RoadLine;
}
public void setRoadLine(String roadLine) {
RoadLine = roadLine;
}
public String getLineStandardCode() {
return LineStandardCode;
}
public void setLineStandardCode(String lineStandardCode) {
LineStandardCode = lineStandardCode;
}
public String getStationName() {
return StationName;
}
public void setStationName(String stationName) {
StationName = stationName;
}
public String getStationName2() {
return stationName2;
}
public void setStationName2(String stationName2) {
this.stationName2 = stationName2;
}
public String getStationStandardCode() {
return StationStandardCode;
}
public void setStationStandardCode(String stationStandardCode) {
StationStandardCode = stationStandardCode;
}
public int getUpStream() {
return UpStream;
}
public void setUpStream(int upStream) {
UpStream = upStream;
}
public String getLevelId() {
return LevelId;
}
public void setLevelId(String levelId) {
LevelId = levelId;
}
public String getStationType() {
return StationType;
}
public void setStationType(String stationType) {
StationType = stationType;
}
public String getPathDirection() {
return PathDirection;
}
public void setPathDirection(String pathDirection) {
PathDirection = pathDirection;
}
}