parent
ea2efb97ca
commit
307b34109e
@ -0,0 +1,35 @@
|
||||
package flowershop.model;
|
||||
|
||||
public class OrderDetail {
|
||||
|
||||
private long orderid;
|
||||
private String productid;
|
||||
private int quantity;
|
||||
private double price;
|
||||
|
||||
public long getOrderid() {
|
||||
return orderid;
|
||||
}
|
||||
public void setOrderid(long orderid) {
|
||||
this.orderid = orderid;
|
||||
}
|
||||
public String getProductid() {
|
||||
return productid;
|
||||
}
|
||||
public void setProductid(String productid) {
|
||||
this.productid = productid;
|
||||
}
|
||||
public int getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
public void setQuantity(int quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
public double getPrice() {
|
||||
return price;
|
||||
}
|
||||
public void setPrice(double price) {
|
||||
this.price = price;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue