⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unitform.java

📁 负责公文的传输及一些处理功能
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.example.web.actionform;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: 02-01-2007 *  * XDoclet definition: * @struts.form name="unitForm" */public class UnitForm extends ActionForm {	// --------------------------------------------------------- Instance Variables		private Integer unitId;	/** unitMaster property */	private String unitMaster;	/** unitType property */	private String unitType;	/** memo property */	private String memo;	/** unitStyle property */	private String unitStyle;	/** printNumber property */	private String printNumber;	/** addRess property */	private String addRess;	/** Telephone property */	private String Telephone;	/** unitEmail property */	private String unitEmail;	/** postcode property */	private String postcode;	/** allFatherId property */	private String allFatherId;	/** fatherId property */	private String fatherId;	/** unitName property */	private String unitName;		/** managerAccount property */	private String managerAccount;		/** managerPwd property */	private String managerPwd;	/** unitXh property */	private String unitXh;	// --------------------------------------------------------- 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 unitMaster.	 * @return String	 */	public String getUnitMaster() {		return unitMaster;	}	/** 	 * Set the unitMaster.	 * @param unitMaster The unitMaster to set	 */	public void setUnitMaster(String unitMaster) {		this.unitMaster = unitMaster;	}	/** 	 * Returns the unitType.	 * @return String	 */	public String getUnitType() {		return unitType;	}	/** 	 * Set the unitType.	 * @param unitType The unitType to set	 */	public void setUnitType(String unitType) {		this.unitType = unitType;	}	/** 	 * Returns the memo.	 * @return String	 */	public String getMemo() {		return memo;	}	/** 	 * Set the memo.	 * @param memo The memo to set	 */	public void setMemo(String memo) {		this.memo = memo;	}	/** 	 * Returns the unitStyle.	 * @return String	 */	public String getUnitStyle() {		return unitStyle;	}	/** 	 * Set the unitStyle.	 * @param unitStyle The unitStyle to set	 */	public void setUnitStyle(String unitStyle) {		this.unitStyle = unitStyle;	}	/** 	 * Returns the printNumber.	 * @return String	 */	public String getPrintNumber() {		return printNumber;	}	/** 	 * Set the printNumber.	 * @param printNumber The printNumber to set	 */	public void setPrintNumber(String printNumber) {		this.printNumber = printNumber;	}	/** 	 * 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 Telephone.	 * @return String	 */	public String getTelephone() {		return Telephone;	}	/** 	 * Set the Telephone.	 * @param Telephone The Telephone to set	 */	public void setTelephone(String Telephone) {		this.Telephone = Telephone;	}	/** 	 * Returns the unitEmail.	 * @return String	 */	public String getUnitEmail() {		return unitEmail;	}	/** 	 * Set the unitEmail.	 * @param unitEmail The unitEmail to set	 */	public void setUnitEmail(String unitEmail) {		this.unitEmail = unitEmail;	}	/** 	 * Returns the postcode.	 * @return String	 */	public String getPostcode() {		return postcode;	}	/** 	 * Set the postcode.	 * @param postcode The postcode to set	 */	public void setPostcode(String postcode) {		this.postcode = postcode;	}	/** 	 * Returns the allFatherId.	 * @return String	 */	public String getAllFatherId() {		return allFatherId;	}	/** 	 * Set the allFatherId.	 * @param allFatherId The allFatherId to set	 */	public void setAllFatherId(String allFatherId) {		this.allFatherId = allFatherId;	}	/** 	 * Returns the fatherId.	 * @return String	 */	public String getFatherId() {		return fatherId;	}	/**	 * @return the unitXh	 */	public String getUnitXh() {		return unitXh;	}	/**	 * @param unitXh the unitXh to set	 */	public void setUnitXh(String unitXh) {		this.unitXh = unitXh;	}	/** 	 * Set the fatherId.	 * @param fatherId The fatherId to set	 */	public void setFatherId(String fatherId) {		this.fatherId = fatherId;	}	/** 	 * Returns the unitName.	 * @return String	 */	public String getUnitName() {		return unitName;	}	/** 	 * Set the unitName.	 * @param unitName The unitName to set	 */	public void setUnitName(String unitName) {		this.unitName = unitName;	}	public String getManagerAccount() {		return managerAccount;	}	public void setManagerAccount(String managerAccount) {		this.managerAccount = managerAccount;	}	public String getManagerPwd() {		return managerPwd;	}	public void setManagerPwd(String managerPwd) {		this.managerPwd = managerPwd;	}	public Integer getUnitId() {		return unitId;	}	public void setUnitId(Integer unitId) {		this.unitId = unitId;	}}

⌨️ 快捷键说明

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