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


package entity; 
 
import java.util.Date; 
 
public class OrderListCheck 
{ 
	/** 
	 * @param orderID 
	 * @param productID 
	 * @param customerID 
	 * @param orderQuantity 
	 * @param orderDate 
	 * @param orderNotice 
	 * @param orderState 
	 * @param productName 
	 * @param customerName 
	 */ 
	public OrderListCheck(String orderID, int productID, int customerID, 
			int orderQuantity, Date orderDate, String orderNotice, 
			String orderState, String productName, String customerName) 
	{ 
		super(); 
		OrderID = orderID; 
		ProductID = productID; 
		CustomerID = customerID; 
		OrderQuantity = orderQuantity; 
		OrderDate = orderDate; 
		OrderNotice = orderNotice; 
		OrderState = orderState; 
		ProductName = productName; 
		CustomerName = customerName; 
	} 
 
	private String OrderID; 
 
	private int ProductID; 
 
	private int CustomerID; 
 
	private int OrderQuantity; 
 
	private Date OrderDate; 
 
	private String OrderNotice; 
 
	private String OrderState; 
 
	private String ProductName; 
 
	private String CustomerName; 
 
	public int getCustomerID() 
	{ 
		return CustomerID; 
	} 
 
	public void setCustomerID(int customerID) 
	{ 
		CustomerID = customerID; 
	} 
 
	public String getCustomerName() 
	{ 
		return CustomerName; 
	} 
 
	public void setCustomerName(String customerName) 
	{ 
		CustomerName = customerName; 
	} 
 
	public Date getOrderDate() 
	{ 
		return OrderDate; 
	} 
 
	public void setOrderDate(Date orderDate) 
	{ 
		OrderDate = orderDate; 
	} 
 
	public String getOrderID() 
	{ 
		return OrderID; 
	} 
 
	public void setOrderID(String orderID) 
	{ 
		OrderID = orderID; 
	} 
 
	public String getOrderNotice() 
	{ 
		return OrderNotice; 
	} 
 
	public void setOrderNotice(String orderNotice) 
	{ 
		OrderNotice = orderNotice; 
	} 
 
	public int getOrderQuantity() 
	{ 
		return OrderQuantity; 
	} 
 
	public void setOrderQuantity(int orderQuantity) 
	{ 
		OrderQuantity = orderQuantity; 
	} 
 
	public String getOrderState() 
	{ 
		return OrderState; 
	} 
 
	public void setOrderState(String orderState) 
	{ 
		OrderState = orderState; 
	} 
 
	public int getProductID() 
	{ 
		return ProductID; 
	} 
 
	public void setProductID(int productID) 
	{ 
		ProductID = productID; 
	} 
 
	public String getProductName() 
	{ 
		return ProductName; 
	} 
 
	public void setProductName(String productName) 
	{ 
		ProductName = productName; 
	} 
 
}