GeoPremise.java
1.46 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
package com.bsth.entity;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* @author Hill
*/
@Entity
@Table(name = "bsth_f_geo_premise")
public class GeoPremise {
@Id
private Integer id;
private String name;
/**
* 线路代码
*/
private String lineCode;
/**
* 上下行
* 0上行 1下行
*/
private int upDown;
/**
* 站点编码
*/
private String stationCode;
/**
* 坐标
*/
private String coords;
/**
* wgs84坐标
*/
private String coordsWgs;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public int getUpDown() {
return upDown;
}
public void setUpDown(int upDown) {
this.upDown = upDown;
}
public String getStationCode() {
return stationCode;
}
public void setStationCode(String stationCode) {
this.stationCode = stationCode;
}
public String getCoords() {
return coords;
}
public void setCoords(String coords) {
this.coords = coords;
}
public String getCoordsWgs() {
return coordsWgs;
}
public void setCoordsWgs(String coordsWgs) {
this.coordsWgs = coordsWgs;
}
}