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

📄 departmentform.java

📁 用于银行全面掌控公司及各个部门的员工信息与设备资料
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.bank.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: 03-13-2008
 * 
 * XDoclet definition:
 * @struts.form name="departmentForm"
 */
public class DepartmentForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** depType property */
	private int depType;

	/** depName property */
	private String depName;

	/** depId property */
	private int depId;

	/** depUnit property */
	private String depUnit;

	/** depIds property */
	private String depIds;

	private int code;
	
	
	
	/*
	 * Generated Methods
	 */

	public int getCode() {
		return code;
	}

	public void setCode(int code) {
		this.code = code;
	}

	/** 
	 * 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 depType.
	 * @return int
	 */
	public int getDepType() {
		return depType;
	}

	/** 
	 * Set the depType.
	 * @param depType The depType to set
	 */
	public void setDepType(int depType) {
		this.depType = depType;
	}

	/** 
	 * Returns the depName.
	 * @return String
	 */
	public String getDepName() {
		return depName;
	}

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

	/** 
	 * Returns the depId.
	 * @return int
	 */
	public int getDepId() {
		return depId;
	}

	/** 
	 * Set the depId.
	 * @param depId The depId to set
	 */
	public void setDepId(int depId) {
		this.depId = depId;
	}

	/** 
	 * Returns the depUnit.
	 * @return String
	 */
	public String getDepUnit() {
		return depUnit;
	}

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

	/** 
	 * Returns the depIds.
	 * @return String
	 */
	public String getDepIds() {
		return depIds;
	}

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

⌨️ 快捷键说明

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