自动化立体仓库 - WMS系统
#
lsh
3 天以前 642428dd870c2f288bb0f3a5fc94373a69a425cf
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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 Short locType1;
 
    // 宽窄类型: 1:窄库位  2:宽库位
    private Short locType2;
 
    // 轻重类型: 1:轻库位  2:重库位
    private Short locType3;
 
    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 Short getLocType1() {
        return locType1;
    }
 
    public void setLocType1(Short locType1) {
        this.locType1 = locType1;
    }
 
    public Short getLocType2() {
        return locType2;
    }
 
    public void setLocType2(Short locType2) {
        this.locType2 = locType2;
    }
 
    public Short getLocType3() {
        return locType3;
    }
 
    public void setLocType3(Short locType3) {
        this.locType3 = locType3;
    }
 
}