updatepatientinfoform.java

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

JAVA
165
字号
//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-21-2005 *  * XDoclet definition: * @struts.form name="updatePatientInfoForm" */public class UpdatePatientInfoForm extends ActionForm {	// --------------------------------------------------------- Instance Variables	/** in_date property */	private String in_date;	/** waitDate property */	private String waitDate;	/** stayIn property */	private String stayIn;	/** out_date property */	private String out_date;	/** true_out property */	private String true_out;	/** condition property */	private String condition;	// --------------------------------------------------------- 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 in_date.	 * @return String	 */	public String getIn_date() {		return in_date;	}	/** 	 * Set the in_date.	 * @param in_date The in_date to set	 */	public void setIn_date(String in_date) {		this.in_date = in_date;	}	/** 	 * Returns the waitDate.	 * @return String	 */	public String getWaitDate() {		return waitDate;	}	/** 	 * Set the waitDate.	 * @param waitDate The waitDate to set	 */	public void setWaitDate(String waitDate) {		this.waitDate = waitDate;	}	/** 	 * Returns the stayIn.	 * @return String	 */	public String getStayIn() {		return stayIn;	}	/** 	 * Set the stayIn.	 * @param stayIn The stayIn to set	 */	public void setStayIn(String stayIn) {		this.stayIn = stayIn;	}	/** 	 * Returns the out_date.	 * @return String	 */	public String getOut_date() {		return out_date;	}	/** 	 * Set the out_date.	 * @param out_date The out_date to set	 */	public void setOut_date(String out_date) {		this.out_date = out_date;	}	/** 	 * Returns the true_out.	 * @return String	 */	public String getTrue_out() {		return true_out;	}	/** 	 * Set the true_out.	 * @param true_out The true_out to set	 */	public void setTrue_out(String true_out) {		this.true_out = true_out;	}	/** 	 * Returns the condition.	 * @return String	 */	public String getCondition() {		return condition;	}	/** 	 * Set the condition.	 * @param condition The condition to set	 */	public void setCondition(String condition) {		this.condition = condition;	}}

⌨️ 快捷键说明

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