forked from ptxmotc/Sample-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRailStation.java
More file actions
77 lines (72 loc) · 1.61 KB
/
Copy pathRailStation.java
File metadata and controls
77 lines (72 loc) · 1.61 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
/**
* 台鐵車站基本資料
*
* @author Lin
*
*/
public class RailStation {
// 車站代碼
public String StationID;
// 車站中文
public String StationNameZh;
// 車站英文
public String StationNameEn;
// 經度
public long StationLon;
// 緯度
public long StationLat;
// 車站地址
public String StationAddress;
// 聯繫電話
public String StationPhone;
// 車站級別定義
public String StationClass;
public String getStationID() {
return StationID;
}
public void setStationID(String stationID) {
StationID = stationID;
}
public String getStationNameZh() {
return StationNameZh;
}
public void setStationNameZh(String stationNameZh) {
StationNameZh = stationNameZh;
}
public String getStationNameEn() {
return StationNameEn;
}
public void setStationNameEn(String stationNameEn) {
StationNameEn = stationNameEn;
}
public long getStationLon() {
return StationLon;
}
public void setStationLon(long stationLon) {
StationLon = stationLon;
}
public long getStationLat() {
return StationLat;
}
public void setStationLat(long stationLat) {
StationLat = stationLat;
}
public String getStationAddress() {
return StationAddress;
}
public void setStationAddress(String stationAddress) {
StationAddress = stationAddress;
}
public String getStationPhone() {
return StationPhone;
}
public void setStationPhone(String stationPhone) {
StationPhone = stationPhone;
}
public String getStationClass() {
return StationClass;
}
public void setStationClass(String stationClass) {
StationClass = stationClass;
}
}