自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-29 d4e17a37b2c13ab13123fc373d25ffbedfc5f0e7
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
package com.zy.asrs.entity.param;
 
import java.util.List;
 
/**
 * Created by vincent on 2020/6/11
 */
public class FullStoreParam {
 
    // 托盘条码
    private String barcode;
 
    // 站点编号
    private Integer devpNo;
 
    // 物料列表数据
    private List<MatCodeStore> list;
 
    public static class MatCodeStore {
 
        // 物料编号
        private String matNo;
 
        // 物料数量
        private Double count;
 
        public String getMatNo() {
            return matNo;
        }
 
        public void setMatNo(String matNo) {
            this.matNo = matNo;
        }
 
        public Double getCount() {
            return count;
        }
 
        public void setCount(Double count) {
            this.count = count;
        }
    }
 
    public String getBarcode() {
        return barcode;
    }
 
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
 
    public Integer getDevpNo() {
        return devpNo;
    }
 
    public void setDevpNo(Integer devpNo) {
        this.devpNo = devpNo;
    }
 
    public List<MatCodeStore> getList() {
        return list;
    }
 
    public void setList(List<MatCodeStore> list) {
        this.list = list;
    }
}