TaskBill.java
1.35 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
package com.huaheng.api.tv.domain;
import java.math.BigDecimal;
public class TaskBill {
/**
* 任务类型
*/
private String taskType;
/**
* 出库口
*/
private String port;
/**
* 容器号
*/
private String containerCode;
/**
* 从货位,源库位
*/
private String fromLocation;
/*
数量
*/
private BigDecimal qty;
/**
* 批次
*/
private String batch;
public String getTaskType() {
return taskType;
}
public void setTaskType(String taskType) {
this.taskType = taskType;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
public String getContainerCode() {
return containerCode;
}
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public String getFromLocation() {
return fromLocation;
}
public void setFromLocation(String fromLocation) {
this.fromLocation = fromLocation;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public String getBatch() {
return batch;
}
public void setBatch(String batch) {
this.batch = batch;
}
}