parent
c650dab0ea
commit
b6455a0646
@ -0,0 +1,41 @@
|
||||
package domain;
|
||||
|
||||
public class OrdersDetailmbz {
|
||||
private long orderidmbz;
|
||||
private String productidmbz;
|
||||
private int quantitymbz;
|
||||
private double unitcostmbz;
|
||||
public OrdersDetailmbz() {}
|
||||
public OrdersDetailmbz(long orderidmbz, String productidmbz, int quantitymbz, double unitcostmbz) {
|
||||
this.orderidmbz = orderidmbz;
|
||||
this.productidmbz = productidmbz;
|
||||
this.quantitymbz = quantitymbz;
|
||||
this.unitcostmbz = unitcostmbz;
|
||||
}
|
||||
public long getOrderidmbz() {
|
||||
return orderidmbz;
|
||||
}
|
||||
public void setOrderidmbz(long orderidmbz) {
|
||||
this.orderidmbz = orderidmbz;
|
||||
}
|
||||
public String getProductidmbz() {
|
||||
return productidmbz;
|
||||
}
|
||||
public void setProductidmbz(String productidmbz) {
|
||||
this.productidmbz = productidmbz;
|
||||
}
|
||||
public int getQuantitymbz() {
|
||||
return quantitymbz;
|
||||
}
|
||||
public void setQuantitymbz(int quantitymbz) {
|
||||
this.quantitymbz = quantitymbz;
|
||||
}
|
||||
public double getUnitcostmbz() {
|
||||
return unitcostmbz;
|
||||
}
|
||||
public void setUnitcostmbz(double unitcostmbz) {
|
||||
this.unitcostmbz = unitcostmbz;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue