addordform.java

来自「本系统是struts+hibernate完成的,主要功能是一个网上购物管理系统」· Java 代码 · 共 73 行

JAVA
73
字号
/**
 * 
 */
package struts.Form;

import java.io.Serializable;

import org.apache.struts.validator.ValidatorForm;

/**
 * @author Administrator
 * 
 */
public class addOrdForm extends ValidatorForm implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private String newGoods;

	private String singlePrice;

	private String orderDate;

	/**
	 * @return the newGoods
	 */
	public String getNewGoods() {
		return newGoods;
	}

	/**
	 * @param newGoods
	 *            the newGoods to set
	 */
	public void setNewGoods(String newGoods) {
		this.newGoods = newGoods;
	}

	/**
	 * @return the orderDate
	 */
	public String getOrderDate() {
		return orderDate;
	}

	/**
	 * @param orderDate
	 *            the orderDate to set
	 */
	public void setOrderDate(String orderDate) {
		this.orderDate = orderDate;
	}

	/**
	 * @return the singlePrice
	 */
	public String getSinglePrice() {
		return singlePrice;
	}

	/**
	 * @param singlePrice
	 *            the singlePrice to set
	 */
	public void setSinglePrice(String singlePrice) {
		this.singlePrice = singlePrice;
	}

}

⌨️ 快捷键说明

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