自动化立体仓库 - WMS系统
#
lty
5 天以前 6fb055d07a4b1e3e4daa53db29addf015fb8e669
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
package com.zy.asrs.entity.param;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * Created by vincent on 2020/6/13
 */
public class StaDescInitParam {
 
    // 堆垛机号
    private Integer crnNo;
 
    // 格式化开关(打开删除老数据)
    private Integer typeDesc = 0;
    // 入库
    private Integer typeDesc1 = 0;
    // 空板入库
    private Integer typeDesc10 = 0;
    // 拣料盘点入库
    private Integer typeDesc53 = 0;
    // 出库
    private Integer typeDesc101 = 0;
    // 空板出库
    private Integer typeDesc110 = 0;
    // 拣料盘点出库
    private Integer typeDesc103 = 0;
 
    private String startStaList = "";
 
    private String endStaList = "";
 
    public String getStartStaList() {
        return startStaList;
    }
 
    public void setStartStaList(String startStaList) {
        this.startStaList = startStaList;
    }
 
    public String getEndStaList() {
        return endStaList;
    }
 
    public void setEndStaList(String endStaList) {
        this.endStaList = endStaList;
    }
 
    public Integer getCrnNo() {
        return crnNo;
    }
 
    public void setCrnNo(Integer crnNo) {
        this.crnNo = crnNo;
    }
 
    public Integer getTypeDesc() {
        return typeDesc;
    }
 
    public void setTypeDesc(Integer typeDesc) {
        this.typeDesc = typeDesc;
    }
 
    public Integer getTypeDesc1() {
        return typeDesc1;
    }
 
    public void setTypeDesc1(Integer typeDesc1) {
        this.typeDesc1 = typeDesc1;
    }
 
    public Integer getTypeDesc10() {
        return typeDesc10;
    }
 
    public void setTypeDesc10(Integer typeDesc10) {
        this.typeDesc10 = typeDesc10;
    }
 
    public Integer getTypeDesc53() {
        return typeDesc53;
    }
 
    public void setTypeDesc53(Integer typeDesc53) {
        this.typeDesc53 = typeDesc53;
    }
 
    public Integer getTypeDesc101() {
        return typeDesc101;
    }
 
    public void setTypeDesc101(Integer typeDesc101) {
        this.typeDesc101 = typeDesc101;
    }
 
    public Integer getTypeDesc110() {
        return typeDesc110;
    }
 
    public void setTypeDesc110(Integer typeDesc110) {
        this.typeDesc110 = typeDesc110;
    }
 
    public Integer getTypeDesc103() {
        return typeDesc103;
    }
 
    public void setTypeDesc103(Integer typeDesc103) {
        this.typeDesc103 = typeDesc103;
    }
 
    public List<Integer> getType(){
        List<Integer> type = new ArrayList<>();
        if (this.typeDesc1==1){
            type.add(1);
        }
        if (this.typeDesc10==1){
            type.add(10);
        }
        if (this.typeDesc53==1){
            type.add(53);
            type.add(57);
        }
        if (this.typeDesc101==1){
            type.add(101);
        }
        if (this.typeDesc110==1){
            type.add(110);
        }
        if (this.typeDesc103==1){
            type.add(103);
            type.add(107);
        }
        return type;
    }
}