getallfareform.java

来自「航空订票系统,可实现航空订票的主要功能.」· Java 代码 · 共 184 行

JAVA
184
字号
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.1/xslt/JavaClass.xslpackage com.yuanlf.struts.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/**  * MyEclipse Struts * Creation date: 04-30-2006 *  * XDoclet definition: * @struts.form name="getAllFareForm" */public class GetAllFareForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** bus_fare property */	private String bus_fare;	/** eco_fare property */	private String eco_fare;	/** route_desc property */	private String route_desc;	/** destination property */	private String destination;	/** route_code property */	private String route_code;	/** origin property */	private String origin;	/** first_fare property */	private String first_fare;	// --------------------------------------------------------- Methods	/** 	 * Method validate	 * @param mapping	 * @param request	 * @return ActionErrors	 */	public ActionErrors validate(		ActionMapping mapping,		HttpServletRequest request) {		// TODO Auto-generated method stub		return null;	}	/** 	 * Method reset	 * @param mapping	 * @param request	 */	public void reset(ActionMapping mapping, HttpServletRequest request) {		// TODO Auto-generated method stub	}	/** 	 * Returns the bus_fare.	 * @return String	 */	public String getBus_fare() {		return bus_fare;	}	/** 	 * Set the bus_fare.	 * @param bus_fare The bus_fare to set	 */	public void setBus_fare(String bus_fare) {		this.bus_fare = bus_fare;	}	/** 	 * Returns the eco_fare.	 * @return String	 */	public String getEco_fare() {		return eco_fare;	}	/** 	 * Set the eco_fare.	 * @param eco_fare The eco_fare to set	 */	public void setEco_fare(String eco_fare) {		this.eco_fare = eco_fare;	}	/** 	 * Returns the route_desc.	 * @return String	 */	public String getRoute_desc() {		return route_desc;	}	/** 	 * Set the route_desc.	 * @param route_desc The route_desc to set	 */	public void setRoute_desc(String route_desc) {		this.route_desc = route_desc;	}	/** 	 * Returns the destination.	 * @return String	 */	public String getDestination() {		return destination;	}	/** 	 * Set the destination.	 * @param destination The destination to set	 */	public void setDestination(String destination) {		this.destination = destination;	}	/** 	 * Returns the route_code.	 * @return String	 */	public String getRoute_code() {		return route_code;	}	/** 	 * Set the route_code.	 * @param route_code The route_code to set	 */	public void setRoute_code(String route_code) {		this.route_code = route_code;	}	/** 	 * Returns the origin.	 * @return String	 */	public String getOrigin() {		return origin;	}	/** 	 * Set the origin.	 * @param origin The origin to set	 */	public void setOrigin(String origin) {		this.origin = origin;	}	/** 	 * Returns the first_fare.	 * @return String	 */	public String getFirst_fare() {		return first_fare;	}	/** 	 * Set the first_fare.	 * @param first_fare The first_fare to set	 */	public void setFirst_fare(String first_fare) {		this.first_fare = first_fare;	}}

⌨️ 快捷键说明

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