ShipmentCombinationModel.java
1.71 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
package com.huaheng.pc.shipment.shipmentContainerHeader.domain;
import java.math.BigDecimal;
/**
* 用于出库组盘,前端给后端传递数据
*/
public class ShipmentCombinationModel {
//组盘时的出库明细Id
private int shipmentDetailId;
//组盘时选择的库存
private int inventoryDetailId;
//组盘数量
private BigDecimal shipQty;
//组盘类型
private Short type;
//是否自动生成任务
private boolean auto=false;
//自动生成时,选择的任务类型
private int taskType;
/** 货主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 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 getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public int getInventoryDetailId() {
return inventoryDetailId;
}
public void setInventoryDetailId(int inventoryDetailId) {
this.inventoryDetailId = inventoryDetailId;
}
public BigDecimal getShipQty() {
return shipQty;
}
public void setShipQty(BigDecimal shipQty) {
this.shipQty = shipQty;
}
}