ShipMaterialDetail.java
1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.huaheng.pc.general.customer.domain;
import java.math.BigDecimal;
import java.util.List;
public class ShipMaterialDetail {
/** 仓库 */
private String warehouseCode;
/** 存货编码 */
private String materialCode;
/** 发货数量 */
private BigDecimal qty = new BigDecimal(0);
/** 已出数量 */
private BigDecimal qtyCompleted = new BigDecimal(0);
/** 物料对应的出库详情id**/
private List<Integer> shipDetailIds;
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public String getMaterialCode() {
return materialCode;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public BigDecimal getQtyCompleted() {
return qtyCompleted;
}
public void setQtyCompleted(BigDecimal qtyCompleted) {
this.qtyCompleted = qtyCompleted;
}
public List<Integer> getShipDetailId() {
return shipDetailIds;
}
public void setShipDetailId(List<Integer> shipDetailIds) {
this.shipDetailIds = shipDetailIds;
}
@Override
public String toString() {
return "ShipMaterialDetail{" +
"warehouseCode='" + warehouseCode + '\'' +
", materialCode='" + materialCode + '\'' +
", qty=" + qty +
", qtyCompleted=" + qtyCompleted +
", shipDetailIds=" + shipDetailIds +
'}';
}
}