updatestaffinfohrmform.java

来自「一个小型的医疗管理系统」· Java 代码 · 共 222 行

JAVA
222
字号
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.yourcompany.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: 10-20-2005 *  * XDoclet definition: * @struts.form name="updateStaffInfoHRMForm" */public class UpdateStaffInfoHRMForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** tele property */	private String tele;	/** paidtype property */	private String paidtype;	/** salaryScale property */	private String salaryScale;	/** pORt property */	private String pORt;	/** position property */	private String position;	/** address property */	private String address;	/** hours property */	private String hours;	/** wardid property */	private String wardid;	/** salary property */	private String salary;	// --------------------------------------------------------- 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 tele.	 * @return String	 */	public String getTele() {		return tele;	}	/** 	 * Set the tele.	 * @param tele The tele to set	 */	public void setTele(String tele) {		this.tele = tele;	}	/** 	 * Returns the paidtype.	 * @return String	 */	public String getPaidtype() {		return paidtype;	}	/** 	 * Set the paidtype.	 * @param paidtype The paidtype to set	 */	public void setPaidtype(String paidtype) {		this.paidtype = paidtype;	}	/** 	 * Returns the salaryScale.	 * @return String	 */	public String getSalaryScale() {		return salaryScale;	}	/** 	 * Set the salaryScale.	 * @param salaryScale The salaryScale to set	 */	public void setSalaryScale(String salaryScale) {		this.salaryScale = salaryScale;	}	/** 	 * Returns the pORt.	 * @return String	 */	public String getPORt() {		return pORt;	}	/** 	 * Set the pORt.	 * @param pORt The pORt to set	 */	public void setPORt(String pORt) {		this.pORt = pORt;	}	/** 	 * Returns the position.	 * @return String	 */	public String getPosition() {		return position;	}	/** 	 * Set the position.	 * @param position The position to set	 */	public void setPosition(String position) {		this.position = position;	}	/** 	 * Returns the address.	 * @return String	 */	public String getAddress() {		return address;	}	/** 	 * Set the address.	 * @param address The address to set	 */	public void setAddress(String address) {		this.address = address;	}	/** 	 * Returns the hours.	 * @return String	 */	public String getHours() {		return hours;	}	/** 	 * Set the hours.	 * @param hours The hours to set	 */	public void setHours(String hours) {		this.hours = hours;	}	/** 	 * Returns the wardid.	 * @return String	 */	public String getWardid() {		return wardid;	}	/** 	 * Set the wardid.	 * @param wardid The wardid to set	 */	public void setWardid(String wardid) {		this.wardid = wardid;	}	/** 	 * Returns the salary.	 * @return String	 */	public String getSalary() {		return salary;	}	/** 	 * Set the salary.	 * @param salary The salary to set	 */	public void setSalary(String salary) {		this.salary = salary;	}}

⌨️ 快捷键说明

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