ShipmentCombinationModel.java
2.31 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
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;
/** 货主id */
private String companyId;
/** 货主code */
private String companyCode;
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;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
@Override
public String toString() {
return "ShipmentCombinationModel{" +
"shipmentDetailId=" + shipmentDetailId +
", inventoryId=" + inventoryId +
", qty=" + qty +
", type=" + type +
", auto=" + auto +
", taskType=" + taskType +
", companyId='" + companyId + '\'' +
", companyCode='" + companyCode + '\'' +
'}';
}
}