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

📄 getseat_bkform.java

📁 航空订票系统,可实现航空订票的主要功能.
💻 JAVA
字号:
//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: 05-02-2006 *  * XDoclet definition: * @struts.form name="getSeat_BkForm" */public class GetSeat_BkForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** eco_seat_bk property */	private String eco_seat_bk;	/** first_seat_bk property */	private String first_seat_bk;	/** bus_seat property */	private String bus_seat;	/** origin property */	private String origin;	/** flightno property */	private String flightno;	/** flight_day1 property */	private String flight_day1;	// --------------------------------------------------------- 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 eco_seat_bk.	 * @return String	 */	public String getEco_seat_bk() {		return eco_seat_bk;	}	/** 	 * Set the eco_seat_bk.	 * @param eco_seat_bk The eco_seat_bk to set	 */	public void setEco_seat_bk(String eco_seat_bk) {		this.eco_seat_bk = eco_seat_bk;	}	/** 	 * Returns the first_seat_bk.	 * @return String	 */	public String getFirst_seat_bk() {		return first_seat_bk;	}	/** 	 * Set the first_seat_bk.	 * @param first_seat_bk The first_seat_bk to set	 */	public void setFirst_seat_bk(String first_seat_bk) {		this.first_seat_bk = first_seat_bk;	}	/** 	 * Returns the bus_seat.	 * @return String	 */	public String getBus_seat() {		return bus_seat;	}	/** 	 * Set the bus_seat.	 * @param bus_seat The bus_seat to set	 */	public void setBus_seat(String bus_seat) {		this.bus_seat = bus_seat;	}	/** 	 * 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 flightno.	 * @return String	 */	public String getFlightno() {		return flightno;	}	/** 	 * Set the flightno.	 * @param flightno The flightno to set	 */	public void setFlightno(String flightno) {		this.flightno = flightno;	}	/** 	 * Returns the flight_day1.	 * @return String	 */	public String getFlight_day1() {		return flight_day1;	}	/** 	 * Set the flight_day1.	 * @param flight_day1 The flight_day1 to set	 */	public void setFlight_day1(String flight_day1) {		this.flight_day1 = flight_day1;	}}

⌨️ 快捷键说明

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