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

📄 outgrowth.java

📁 这是一个物流管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package 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: 04-24-2009
 * 
 * XDoclet definition:
 * @struts.form name="outgrowth"
 */
public class OutGrowth extends ActionForm {
	/*
	 * Generated fields
	 */

	/** vehicleID property */
	private long vehicleID;

	/** outgrowthTime property */
	private String outgrowthTime;

	/** outgrowthID property */
	private long outgrowthID;

	/** stateID property */
	private String stateID;

	/** employeeID property */
	private long employeeID;

	/** orderId property */
	private long orderId;

	/** missionID property */
	private long missionID;

	/*
	 * Generated 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 vehicleID.
	 * @return Integer
	 */
	public long getVehicleID() {
		return vehicleID;
	}

	/** 
	 * Set the vehicleID.
	 * @param vehicleID The vehicleID to set
	 */
	public void setVehicleID(long vehicleID) {
		this.vehicleID = vehicleID;
	}

	/** 
	 * Returns the outgrowthTime.
	 * @return String
	 */
	public String getOutgrowthTime() {
		return outgrowthTime;
	}

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

	/** 
	 * Returns the outgrowthID.
	 * @return Integer
	 */
	public Long getOutgrowthID() {
		return outgrowthID;
	}

	/** 
	 * Set the outgrowthID.
	 * @param outgrowthID The outgrowthID to set
	 */
	public void setOutgrowthID(long outgrowthID) {
		this.outgrowthID = outgrowthID;
	}

	/** 
	 * Returns the stateID.
	 * @return Integer
	 */
	public String getStateID() {
		return stateID;
	}

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

	/** 
	 * Returns the employeeID.
	 * @return Integer
	 */
	public long getEmployeeID() {
		return employeeID;
	}

	/** 
	 * Set the employeeID.
	 * @param employeeID The employeeID to set
	 */
	public void setEmployeeID(long employeeID) {
		this.employeeID = employeeID;
	}

	/** 
	 * Returns the orderId.
	 * @return Integer
	 */
	public long getOrderId() {
		return orderId;
	}

	/** 
	 * Set the orderId.
	 * @param orderId The orderId to set
	 */
	public void setOrderId(long orderId) {
		this.orderId = orderId;
	}

	/** 
	 * Returns the missionID.
	 * @return Integer
	 */
	public long getMissionID() {
		return missionID;
	}

	/** 
	 * Set the missionID.
	 * @param missionID The missionID to set
	 */
	public void setMissionID(long missionID) {
		this.missionID = missionID;
	}
}

⌨️ 快捷键说明

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