自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-11 4c362043cec8a44787a4658b0e09638a3baf2bc0
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
package com.zy.asrs.domain.vo;
 
/**
 * Created by vincent on 2020-06-02
 */
public class CommandLogVo {
 
    // 堆垛机编号
    private String crnNo;
 
    // 状态
    private Integer status;
 
    // 命令报文
    private String command;
 
    public String getCrnNo() {
        return crnNo;
    }
 
    public void setCrnNo(String crnNo) {
        this.crnNo = crnNo;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getCommand() {
        return command;
    }
 
    public void setCommand(String command) {
        this.command = command;
    }
}