deliverydetail.java
来自「基于mvc的java进销存系统」· Java 代码 · 共 67 行
JAVA
67 行
/*
* DeliveryDetail.java
*
* Created on 2007年4月21日, 上午10:29
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package table;
/**
*
* @author 下雪天
*/
public class DeliveryDetail {
private String DeliveryID; //销售单编号
private String ProductID; //商品编号
private double Quantity; //销售/退货数量
private double Price; //销售/退货单价
private double Amount; //总金额
/** Creates a new instance of DeliveryDetail */
public DeliveryDetail() {
}
public String getDeliveryID() {
return DeliveryID;
}
public void setDeliveryID(String DeliveryID) {
this.DeliveryID = DeliveryID;
}
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 + -
显示快捷键?