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

📄 goodsform.java

📁 一个oa系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.oa.commandmanage.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: 08-28-2007
 * 
 * XDoclet definition:
 * @struts.form name="goodsForm"
 */
public class GoodsForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** amount property */
	private Integer amount;
	private String[]chkpla;

	/** total property */
	private Integer total;

	/** buyperson property */
	private String buyperson;

	/** describer property */
	private String describer;

	/** price property */
	private Integer price;

	/** useperson property */
	private String useperson;

	/** goodsname property */
	private String goodsname;

	/** id property */
	private Integer id;

	/** buydate property */
	private String buydate;

	/*
	 * 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 amount.
	 * @return Integer
	 */
	public Integer getAmount() {
		return amount;
	}

	/** 
	 * Set the amount.
	 * @param amount The amount to set
	 */
	public void setAmount(Integer amount) {
		this.amount = amount;
	}

	/** 
	 * Returns the total.
	 * @return Integer
	 */
	public Integer getTotal() {
		return total;
	}

	/** 
	 * Set the total.
	 * @param total The total to set
	 */
	public void setTotal(Integer total) {
		this.total = total;
	}

	/** 
	 * Returns the buyperson.
	 * @return String
	 */
	public String getBuyperson() {
		return buyperson;
	}

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

	/** 
	 * Returns the describer.
	 * @return String
	 */
	public String getDescriber() {
		return describer;
	}

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

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

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

	/** 
	 * Returns the useperson.
	 * @return String
	 */
	public String getUseperson() {
		return useperson;
	}

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

	/** 
	 * Returns the goodsname.
	 * @return String
	 */
	public String getGoodsname() {
		return goodsname;
	}

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

	/** 
	 * Returns the id.
	 * @return Integer
	 */
	public Integer getId() {
		return id;
	}

	/** 
	 * Set the id.
	 * @param id The id to set
	 */
	public void setId(Integer id) {
		this.id = id;
	}

	/** 
	 * Returns the buydate.
	 * @return String
	 */
	public String getBuydate() {
		return buydate;
	}

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

	public String[] getChkpla() {
		return chkpla;
	}

	public void setChkpla(String[] chkpla) {
		this.chkpla = chkpla;
	}
}

⌨️ 快捷键说明

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