patientform.java

来自「这是一个针对医院管理的一个系统」· Java 代码 · 共 236 行

JAVA
236
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.nitpro.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: 12-24-2007
 * 
 * XDoclet definition:
 * @struts.form name="patientformForm"
 */
public class PatientForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** patient_state property */
	private String patient_state="N";

	/** patient_jiguan property */
	private String patient_jiguan;

	/** patient_address property */
	private String patient_address;

	/** patient_sex property */
	private String patient_sex="M";

	/** patient_birth property */
	private String patient_birth;

	/** patient_name property */
	private String patient_name;

	/** patient_id property */
	private Integer patient_num;
	
	private Integer pay_money;
	
	private String isdelete;
	
	private String patient_id;
	private String operator_id;
	private String operator_pwd;
	/*
	 * Generated Methods
	 */
	private String selectType;
	public String getSelectType() {
		return selectType;
	}

	public void setSelectType(String selectType) {
		this.selectType = selectType;
	}

	public Integer getPay_money() {
		return pay_money;
	}

	public void setPay_money(Integer pay_money) {
		this.pay_money = pay_money;
	}

	/** 
	 * 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 patient_state.
	 * @return String
	 */
	public String getPatient_state() {
		return patient_state;
	}

	/** 
	 * Set the patient_state.
	 * @param patient_state The patient_state to set
	 */
	public void setPatient_state(String patient_state) {
		this.patient_state = patient_state;
	}

	/** 
	 * Returns the patient_jiguan.
	 * @return String
	 */
	public String getPatient_jiguan() {
		return patient_jiguan;
	}

	/** 
	 * Set the patient_jiguan.
	 * @param patient_jiguan The patient_jiguan to set
	 */
	public void setPatient_jiguan(String patient_jiguan) {
		this.patient_jiguan = patient_jiguan;
	}

	/** 
	 * Returns the patient_address.
	 * @return String
	 */
	public String getPatient_address() {
		return patient_address;
	}

	/** 
	 * Set the patient_address.
	 * @param patient_address The patient_address to set
	 */
	public void setPatient_address(String patient_address) {
		this.patient_address = patient_address;
	}

	/** 
	 * Returns the patient_sex.
	 * @return String
	 */
	public String getPatient_sex() {
		return patient_sex;
	}

	/** 
	 * Set the patient_sex.
	 * @param patient_sex The patient_sex to set
	 */
	public void setPatient_sex(String patient_sex) {
		this.patient_sex = patient_sex;
	}

	/** 
	 * Returns the patient_birth.
	 * @return String
	 */
	public String getPatient_birth() {
		return patient_birth;
	}

	/** 
	 * Set the patient_birth.
	 * @param patient_birth The patient_birth to set
	 */
	public void setPatient_birth(String patient_birth) {
		this.patient_birth = patient_birth;
	}

	/** 
	 * Returns the patient_name.
	 * @return String
	 */
	public String getPatient_name() {
		return patient_name;
	}

	/** 
	 * Set the patient_name.
	 * @param patient_name The patient_name to set
	 */
	public void setPatient_name(String patient_name) {
		this.patient_name = patient_name;
	}

	/** 
	 * Returns the patient_id.
	 * @return Integer
	 */
	public String getPatient_id() {
		return patient_id;
	}

	/** 
	 * Set the patient_id.
	 * @param patient_id The patient_id to set
	 */
	public void setPatient_id(String patient_id) {
		this.patient_id = patient_id;
	}

	public String getIsdelete() {
		return isdelete;
	}

	public void setIsdelete(String isdelete) {
		this.isdelete = isdelete;
	}

	public Integer getPatient_num() {
		return patient_num;
	}

	public void setPatient_num(Integer patient_num) {
		this.patient_num = patient_num;
	}

	public String getOperator_id() {
		return operator_id;
	}

	public void setOperator_id(String operator_id) {
		this.operator_id = operator_id;
	}

	public String getOperator_pwd() {
		return operator_pwd;
	}

	public void setOperator_pwd(String operator_pwd) {
		this.operator_pwd = operator_pwd;
	}
}

⌨️ 快捷键说明

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