checi_table.java

来自「java做的 公交车查询系统....毕业设计」· Java 代码 · 共 74 行

JAVA
74
字号
//与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 + =
减小字号Ctrl + -
显示快捷键?