自动化立体仓库 - WCS系统
zjj
2024-01-13 d90be3792d9152efc47eae0e7747aa0fd70faad3
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
package com.zy.asrs.domain.param;
 
/**
 * 系统运行状态操作入参
 * Created by vincent on 2020-06-03
 */
public class SystemSwitchParam {
 
    // 操作类型 1: 打开;  0: 关闭
    private Integer operatorType;
 
    // 密码口令
    private String password;
 
    public Integer getOperatorType() {
        return operatorType;
    }
 
    public void setOperatorType(Integer operatorType) {
        this.operatorType = operatorType;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
}