⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 course.java

📁 java做的 公交车查询系统....毕业设计
💻 JAVA
字号:
//封装的线路信息的 javabean,对应数据库中 course 数据表
package gongjiaochexitong.gongjiaoche;

public class course {
	private static final long serialVersionUID = 1L;
	
	protected int busNo;
	protected int stationNo;
	protected String journey;
	protected int seqNum;
	
	public course(){
		
	}
	
	public void setBusNo(int busNo){
		this.busNo=busNo;
	}
	
	public int getBusNo(){
		return busNo;
	}
	
	public void setStationNo(int stationNo){
		this.stationNo=stationNo;
	}
	
	public int getStationNo(){
		return stationNo;
	}
	
	public void setJourney(String journey){
		this.journey=journey;
	}
	
	public String getJourney(){
		return journey;
	}
	
	public void setSeqNum(int seqNum){
		this.seqNum=seqNum;
	}
	
	public int getSeqNum(){
		return seqNum;
	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -