MobileInventory.java
2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.huaheng.mobilewms.bean;
import java.math.BigDecimal;
public class MobileInventory {
/** 库位id */
private int id;
/** 库位编号 */
private String locationCode;
/** 容器编号 */
private String containerCode;
/** 物料编码 */
private String materialCode;
/**物料名称 */
private String materialName;
/**物料规格 */
private String specification;
/** 数量 */
private BigDecimal qty;
/** 任务数量 */
private BigDecimal taskQty = new BigDecimal(0);
/** 结果类型 */
private int resultType;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getLocationCode() {
return locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
public String getMaterialCode() {
return materialCode;
}
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public BigDecimal getTaskQty() {
return taskQty;
}
public void setTaskQty(BigDecimal taskQty) {
this.taskQty = taskQty;
}
public int getResultType() {
return resultType;
}
public void setResultType(int resultType) {
this.resultType = resultType;
}
public String getSpecification() {
return specification;
}
public void setSpecification(String specification) {
this.specification = specification;
}
@Override
public String toString() {
return "MobileInventory{" +
"id='" + id + '\'' +
"locationCode='" + locationCode + '\'' +
", materialCode='" + materialCode + '\'' +
", materialName='" + materialName + '\'' +
", specification='" + specification + '\'' +
", qty=" + qty +
", taskQty=" + taskQty +
", resultType=" + resultType +
'}';
}
}