ShipmentCombinationModel.java
1.79 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
package com.huaheng.pc.shipment.shipmentContainerHeader.domain;
import java.math.BigDecimal;
/**
* 用于出库组盘,前端给后端传递数据
*/
public class ShipmentCombinationModel {
//组盘时的出库明细Id
private int shipmentDetailId;
//组盘时选择的库存
private int inventoryId;
//组盘数量
private BigDecimal qty;
//组盘类型
private Short type;
//是否自动生成任务
private boolean auto=false;
//自动生成时,选择的任务类型
private int taskType;
public int getTaskType() {
return taskType;
}
public void setTaskType(int taskType) {
this.taskType = taskType;
}
public int getShipmentDetailId() {
return shipmentDetailId;
}
public void setShipmentDetailId(int shipmentDetailId) {
this.shipmentDetailId = shipmentDetailId;
}
public int getInventoryId() {
return inventoryId;
}
public void setInventoryId(int inventoryId) {
this.inventoryId = inventoryId;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public Short getType() {
return type;
}
public void setType(Short type) {
this.type = type;
}
public boolean isAuto() {
return auto;
}
public void setAuto(boolean auto) {
this.auto = auto;
}
@Override
public String toString() {
return "ShipmentCombinationModel{" +
"shipmentDetailId=" + shipmentDetailId +
", inventoryId=" + inventoryId +
", qty=" + qty +
", type=" + type +
", auto=" + auto +
", taskType='" + taskType + '\'' +
'}';
}
}