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

📄 farevo.java

📁 用户管理的系统设计
💻 JAVA
字号:
package persistent;

public class FareVo 
{
	private String route_code;//线路编号
	private String route_desc;//线路名称
	private String origin;//起点城市
	private String destination;//到达城市
	private float first_fare;//头等舱票价
	private float bus_fare;//二等舱票价
	private float eco_fare;//三等舱票价
	
	public String getRoute_code() {
		return route_code;
	}
	public void setRoute_code(String route_code) {
		this.route_code = route_code;
	}
	public String getRoute_desc() {
		return route_desc;
	}
	public void setRoute_desc(String route_desc) {
		this.route_desc = route_desc;
	}
	public String getOrigin() {
		return origin;
	}
	public void setOrigin(String origin) {
		this.origin = origin;
	}
	public String getDestination() {
		return destination;
	}
	public void setDestination(String destination) {
		this.destination = destination;
	}
	public float getFirst_fare() {
		return first_fare;
	}
	public void setFirst_fare(float first_fare) {
		this.first_fare = first_fare;
	}
	public float getBus_fare() {
		return bus_fare;
	}
	public void setBus_fare(float bus_fare) {
		this.bus_fare = bus_fare;
	}
	public float getEco_fare() {
		return eco_fare;
	}
	public void setEco_fare(float eco_fare) {
		this.eco_fare = eco_fare;
	}
}

⌨️ 快捷键说明

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