📄 addwardpatientform.java
字号:
//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-18-2005 * * XDoclet definition: * @struts.form name="addWardPatientForm" */public class AddWardPatientForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** tele property */ private String tele; /** in_date property */ private String in_date; /** true_out_patient property */ private String true_out_patient; /** stayIn property */ private String stayIn; /** address property */ private String address; /** condition property */ private String condition; /** l_name property */ private String l_name; /** register_date property */ private String register_date; /** clinicNum property */ private String clinicNum; /** waitDate property */ private String waitDate; /** f_name property */ private String f_name; /** out_date property */ private String out_date; /** marital_status property */ private String marital_status; /** birthday property */ private String birthday; // --------------------------------------------------------- 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 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 true_out_patient. * @return String */ public String getTrue_out_patient() { return true_out_patient; } /** * Set the true_out_patient. * @param true_out_patient The true_out_patient to set */ public void setTrue_out_patient(String true_out_patient) { this.true_out_patient = true_out_patient; } /** * 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 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 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; } /** * Returns the l_name. * @return String */ public String getL_name() { return l_name; } /** * Set the l_name. * @param l_name The l_name to set */ public void setL_name(String l_name) { this.l_name = l_name; } /** * Returns the register_date. * @return String */ public String getRegister_date() { return register_date; } /** * Set the register_date. * @param register_date The register_date to set */ public void setRegister_date(String register_date) { this.register_date = register_date; } /** * Returns the clinicNum. * @return String */ public String getClinicNum() { return clinicNum; } /** * Set the clinicNum. * @param clinicNum The clinicNum to set */ public void setClinicNum(String clinicNum) { this.clinicNum = clinicNum; } /** * 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 f_name. * @return String */ public String getF_name() { return f_name; } /** * Set the f_name. * @param f_name The f_name to set */ public void setF_name(String f_name) { this.f_name = f_name; } /** * 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 marital_status. * @return String */ public String getMarital_status() { return marital_status; } /** * Set the marital_status. * @param marital_status The marital_status to set */ public void setMarital_status(String marital_status) { this.marital_status = marital_status; } /** * Returns the birthday. * @return String */ public String getBirthday() { return birthday; } /** * Set the birthday. * @param birthday The birthday to set */ public void setBirthday(String birthday) { this.birthday = birthday; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -