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

📄 modorform.java

📁 本系统是struts+hibernate完成的,主要功能是一个网上购物管理系统
💻 JAVA
字号:
/**
 * 
 */
package struts.Form;

import java.io.Serializable;

import org.apache.struts.action.ActionForm;

/**
 * @author Administrator
 * 
 */
public class modOrForm extends ActionForm implements Serializable {

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

	private String goods;

	private String singlePrice;

	private String orderDate;

	/**
	 * @return the goods
	 */
	public String getGoods() {
		return goods;
	}

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

	/**
	 * @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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -