📄 addoutpatientform.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="addOutPatientForm" */public class AddOutPatientForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** tele property */ private String tele; /** f_name property */ private String f_name; /** address property */ private String address; /** seeDate property */ private String seeDate; /** marital_status property */ private String marital_status; /** l_name property */ private String l_name; /** clinicNum property */ private String clinicNum; /** register_date property */ private String register_date; /** 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 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 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 seeDate. * @return String */ public String getSeeDate() { return seeDate; } /** * Set the seeDate. * @param seeDate The seeDate to set */ public void setSeeDate(String seeDate) { this.seeDate = seeDate; } /** * 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 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 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 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 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 + -