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

📄 orderlistcheck.java

📁 该源代码实现了系统的进货
💻 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;
	}

}

⌨️ 快捷键说明

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