自动化立体仓库 - 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
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
package com.zy.asrs.domain.vo;
 
/**
 * Created by vincent on 2020-06-02
 */
public class CrnMsgTableVo {
 
    // 堆垛机号
    private String crnNo;
 
    // 状态
    private String status;
 
    // 工作号
    private String workNo;
 
    // 源站
    private String sourceStaNo;
 
    // 目标站
    private String staNo;
 
    // 源库位
    private String sourceLocNo;
 
    // 目标库位
    private String locNo;
 
    // 异常
    private String error;
 
    // 原点
    private String origin;
 
    // 命令
    private String command;
 
    public CrnMsgTableVo() {
    }
 
    public CrnMsgTableVo(String crnNo, String status, String workNo, String sourceStaNo, String staNo, String sourceLocNo, String locNo, String error, String origin, String command) {
        this.crnNo = crnNo;
        this.status = status;
        this.workNo = workNo;
        this.sourceStaNo = sourceStaNo;
        this.staNo = staNo;
        this.sourceLocNo = sourceLocNo;
        this.locNo = locNo;
        this.error = error;
        this.origin = origin;
        this.command = command;
    }
 
    public String getCrnNo() {
        return crnNo;
    }
 
    public void setCrnNo(String crnNo) {
        this.crnNo = crnNo;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getWorkNo() {
        return workNo;
    }
 
    public void setWorkNo(String workNo) {
        this.workNo = workNo;
    }
 
    public String getSourceStaNo() {
        return sourceStaNo;
    }
 
    public void setSourceStaNo(String sourceStaNo) {
        this.sourceStaNo = sourceStaNo;
    }
 
    public String getStaNo() {
        return staNo;
    }
 
    public void setStaNo(String staNo) {
        this.staNo = staNo;
    }
 
    public String getSourceLocNo() {
        return sourceLocNo;
    }
 
    public void setSourceLocNo(String sourceLocNo) {
        this.sourceLocNo = sourceLocNo;
    }
 
    public String getLocNo() {
        return locNo;
    }
 
    public void setLocNo(String locNo) {
        this.locNo = locNo;
    }
 
    public String getError() {
        return error;
    }
 
    public void setError(String error) {
        this.error = error;
    }
 
    public String getOrigin() {
        return origin;
    }
 
    public void setOrigin(String origin) {
        this.origin = origin;
    }
 
    public String getCommand() {
        return command;
    }
 
    public void setCommand(String command) {
        this.command = command;
    }
}