purchasedetail.java
来自「基于mvc的java进销存系统」· Java 代码 · 共 67 行
JAVA
67 行
/*
* PurchaseDetail.java
*
* Created on 2007年4月21日, 上午10:42
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package table;
/**
*
* @author 下雪天
*/
public class PurchaseDetail {
private String PurchaseID; //采购单编号
private String ProductID; //商品编号
private double Quantity; //采购/退货数量
private double Price; //采购/退货单价
private double Amount; //总金额
/** Creates a new instance of PurchaseDetail */
public PurchaseDetail() {
}
public String getPurchaseID() {
return PurchaseID;
}
public void setPurchaseID(String PurchaseID) {
this.PurchaseID = PurchaseID;
}
public String getProductID() {
return ProductID;
}
public void setProductID(String ProductID) {
this.ProductID = ProductID;
}
public double getQuantity() {
return Quantity;
}
public void setQuantity(double Quantity) {
this.Quantity = Quantity;
}
public double getPrice() {
return Price;
}
public void setPrice(double Price) {
this.Price = Price;
}
public double getAmount() {
return Amount;
}
public void setAmount(double Amount) {
this.Amount = Amount;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?