自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-16 4ea00a26f7773e0ad27aeee512f34ff45fe0f18b
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
112
113
114
115
116
117
118
119
package com.zy.asrs.entity.param;
 
import com.core.common.BaseRes;
import com.core.exception.CoolException;
 
/**
 * Created by vincent on 2020/6/13
 */
public class LocMastInitParam {
 
    // 起始排
    private Integer startRow;
 
    // 终止排
    private Integer endRow;
 
    // 起始列
    private Integer startBay;
 
    // 终止列
    private Integer endBay;
 
    // 起始层
    private Integer startLev;
 
    // 终止层
    private Integer endLev;
 
    // 堆垛机数量
    private Integer crnAmount;
 
    // 库位类型: 1:低库位  2:高库位
    private Integer whsType;
 
    public Integer getStartRow() {
        if (null == startRow) {
            throw new CoolException(BaseRes.PARAM);
        }
        return startRow;
    }
 
    public void setStartRow(Integer startRow) {
        this.startRow = startRow;
    }
 
    public Integer getEndRow() {
        if (null == endRow) {
            throw new CoolException(BaseRes.PARAM);
        }
        return endRow;
    }
 
    public void setEndRow(Integer endRow) {
        this.endRow = endRow;
    }
 
    public Integer getStartBay() {
        if (null == startBay) {
            throw new CoolException(BaseRes.PARAM);
        }
        return startBay;
    }
 
    public void setStartBay(Integer startBay) {
        this.startBay = startBay;
    }
 
    public Integer getEndBay() {
        if (null == endBay) {
            throw new CoolException(BaseRes.PARAM);
        }
        return endBay;
    }
 
    public void setEndBay(Integer endBay) {
        this.endBay = endBay;
    }
 
    public Integer getStartLev() {
        if (null == startLev) {
            throw new CoolException(BaseRes.PARAM);
        }
        return startLev;
    }
 
    public void setStartLev(Integer startLev) {
        this.startLev = startLev;
    }
 
    public Integer getEndLev() {
        if (null == endLev) {
            throw new CoolException(BaseRes.PARAM);
        }
        return endLev;
    }
 
    public void setEndLev(Integer endLev) {
        this.endLev = endLev;
    }
 
    public Integer getCrnAmount() {
        if (crnAmount == null) {
            throw new CoolException(BaseRes.PARAM);
        }
        return crnAmount;
    }
 
    public void setCrnAmount(Integer crnAmount) {
        this.crnAmount = crnAmount;
    }
 
    public Integer getWhsType() {
        return whsType;
    }
 
    public void setWhsType(Integer whsType) {
        this.whsType = whsType;
    }
}