addwareform.java

来自「本系统为符合订单管理 精确使用了账号分层用户管理 可进行主订单 次订单的增加 删」· Java 代码 · 共 162 行

JAVA
162
字号
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.hz.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: 05-02-2008
 * 
 * XDoclet definition:
 * @struts.form name="wareForm"
 */
public class AddWareForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** warePlace property */
	private String warePlace;

	/** present property */
	private String present;

	/** price property */
	private String price;

	/** wareName property */
	private String wareName;

	/** goodsId property */
	private String goodsId;

	/** wareId property */
	private String wareId;

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

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

	/** 
	 * Returns the present.
	 * @return String
	 */
	public String getPresent() {
		return present;
	}

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

	/** 
	 * Returns the price.
	 * @return String
	 */
	public String getPrice() {
		return price;
	}

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

	/** 
	 * Returns the wareName.
	 * @return String
	 */
	public String getWareName() {
		return wareName;
	}

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

	/** 
	 * Returns the goodsId.
	 * @return String
	 */
	public String getGoodsId() {
		return goodsId;
	}

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

	/** 
	 * Returns the wareId.
	 * @return String
	 */
	public String getWareId() {
		return wareId;
	}

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

⌨️ 快捷键说明

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