Line.java
1.44 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
package com.bsth.entity;
/**
* Created by panzhao on 2017/8/4.
*/
public class Line {
/** 线路编码 */
private String lineCode;
/** 线路名称 */
private String name;
/**
* 线路名称 全拼
*/
private String fullChars;
/**
* 线路名称 简拼
*/
private String camelChars;
/** 起始站名称 */
private String startStationName;
/** 终点站名称 */
private String endStationName;
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getStartStationName() {
return startStationName;
}
public void setStartStationName(String startStationName) {
this.startStationName = startStationName;
}
public String getEndStationName() {
return endStationName;
}
public void setEndStationName(String endStationName) {
this.endStationName = endStationName;
}
public String getFullChars() {
return fullChars;
}
public void setFullChars(String fullChars) {
this.fullChars = fullChars;
}
public String getCamelChars() {
return camelChars;
}
public void setCamelChars(String camelChars) {
this.camelChars = camelChars;
}
}