www.pudn.com > BeiJie.rar > SaleInfo.java


package entity; 
 
import java.util.Date; 
 
/** 
 * @author huangcheng 
 * 
 */ 
public class SaleInfo 
{ 
	private String SaleID; 
 
	private int ProductID; 
 
	private int CustomerID; 
 
	private int SaleQuantity; 
 
	private float SalePrice; 
 
	private float SaleSum; 
 
	private Date SaleDate; 
 
	private String Chargeman; 
 
	private String SaleNotice; 
 
	public String getChargeman() 
	{ 
		return Chargeman; 
	} 
 
	public void setChargeman(String chargeman) 
	{ 
		Chargeman = chargeman; 
	} 
 
	/** 
	 * @return 
	 */ 
	public int getCustomerID() 
	{ 
		return CustomerID; 
	} 
 
	public void setCustomerID(int customerID) 
	{ 
		CustomerID = customerID; 
	} 
 
	public int getProductID() 
	{ 
		return ProductID; 
	} 
 
	public void setProductID(int productID) 
	{ 
		ProductID = productID; 
	} 
 
	public Date getSaleDate() 
	{ 
		return SaleDate; 
	} 
 
	public void setSaleDate(Date saleDate) 
	{ 
		SaleDate = saleDate; 
	} 
 
	public String getSaleID() 
	{ 
		return SaleID; 
	} 
 
	public void setSaleID(String saleID) 
	{ 
		SaleID = saleID; 
	} 
 
	public String getSaleNotice() 
	{ 
		return SaleNotice; 
	} 
 
	public void setSaleNotice(String saleNotice) 
	{ 
		SaleNotice = saleNotice; 
	} 
 
	public float getSalePrice() 
	{ 
		return SalePrice; 
	} 
 
	public void setSalePrice(float salePrice) 
	{ 
		SalePrice = salePrice; 
	} 
 
	public int getSaleQuantity() 
	{ 
		return SaleQuantity; 
	} 
 
	public void setSaleQuantity(int saleQuantity) 
	{ 
		SaleQuantity = saleQuantity; 
	} 
 
	public float getSaleSum() 
	{ 
		return SaleSum; 
	} 
 
	public void setSaleSum(float saleSum) 
	{ 
		SaleSum = saleSum; 
	} 
 
}