SpecialStation.java
602 Bytes
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
package com.bsth.entity;
/**
* 对付线路回环的情况(如起点站->第四站->起点站)
* @author Hill
*
*/
public class SpecialStation {
private int lineId;
private String stopNo;
private String lastStopNo;
public int getLineId() {
return lineId;
}
public void setLineId(int lineId) {
this.lineId = lineId;
}
public String getStopNo() {
return stopNo;
}
public void setStopNo(String stopNo) {
this.stopNo = stopNo;
}
public String getLastStopNo() {
return lastStopNo;
}
public void setLastStopNo(String lastStopNo) {
this.lastStopNo = lastStopNo;
}
}