📄 checi_table.java
字号:
//与businfo.java不同之处,businfo中的起点和终点是站点号,而checi_table中的是站点名
package gongjiaochexitong.gongjiaoche;
import java.sql.*;
public class checi_table {
private static final long serialVersionUID = 1L;
protected int busNo;
protected String busType;
protected Time startTime;
protected Time endTime;
protected String startStationName;
protected String endStationName;
public checi_table(){
}
public int getBusNo() {
return busNo;
}
public void setBusNo(int busNo) {
this.busNo = busNo;
}
public String getBusType() {
return busType;
}
public void setBusType(String busType) {
this.busType = busType;
}
public String getEndStationName() {
return endStationName;
}
public void setEndStationName(String endStationName) {
this.endStationName = endStationName;
}
public Time getEndTime() {
return endTime;
}
public void setEndTime(Time endTime) {
this.endTime = endTime;
}
public String getStartStationName() {
return startStationName;
}
public void setStartStationName(String startStationName) {
this.startStationName = startStationName;
}
public Time getStartTime() {
return startTime;
}
public void setStartTime(Time startTime) {
this.startTime = startTime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -