📄 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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -