自动化立体仓库 - WMS系统
pang.jiabao
1 天以前 203e2664c13883f8bb64f638cb1794c0b4480ec2
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
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 BasDevpInitParam {
 
    // 站点号
    // 起始站点号
    private Integer startDev;
 
    // 终止站点号
    private Integer endDev;
 
 
    public Integer getStartDev() {
        if (null == startDev) {
            throw new CoolException(BaseRes.PARAM);
        }
        return startDev;
    }
 
    public void setStartDev(Integer startDev) {
        this.startDev = startDev;
    }
 
    public Integer getEndDev() {
        if (null == endDev) {
            throw new CoolException(BaseRes.PARAM);
        }
        return endDev;
    }
 
    public void setEndDev(Integer endDev) {
        this.endDev = endDev;
    }
 
}