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

📄 merchantsalepassageform.java

📁 基于struts的网上商店源码
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.mole.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: 11-05-2007
 * 
 * XDoclet definition:
 * 
 * @struts.form name="merchantSalePassageForm"
 */
public class MerchantSalePassageForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** discountPrice property */
	private String discountHidden;

	/** userID property */
	private String customerID;

	/** goodsList property */
	private String doneList;

	/** storeID property */
	private String storeID;

	private String useVoucher;

	/*
	 * Generated Methods
	 */

	public String getUseVoucher() {
		return useVoucher;
	}

	public void setUseVoucher(String useVoucher) {
		this.useVoucher = useVoucher;
	}

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

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

	/**
	 * Returns the userID.
	 * 
	 * @return String
	 */
	public String getCustomerID() {
		return customerID;
	}

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

	/**
	 * Returns the goodsList.
	 * 
	 * @return String
	 */
	public String getDoneList() {
		return doneList;
	}

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

	/**
	 * Returns the storeID.
	 * 
	 * @return String
	 */
	public String getStoreID() {
		return storeID;
	}

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

⌨️ 快捷键说明

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