#
luxiaotao1123
2021-06-08 0ac91de9a20e6e6afaa0a37359630b001919682e
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
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;
 
    private String productCode;
 
    public static class MatCodeStore {
 
        // 物料编号
        private String matNo;
 
        // 物料数量
        private Double count;
 
        private String matStatus;
 
        // 生产单号
        private String str5;
 
        // 通知单号
        private String str6;
 
        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 getMatStatus() {
            return matStatus;
        }
 
        public void setMatStatus(String matStatus) {
            this.matStatus = matStatus;
        }
 
        public String getStr5() {
            return str5;
        }
 
        public void setStr5(String str5) {
            this.str5 = str5;
        }
 
        public String getStr6() {
            return str6;
        }
 
        public void setStr6(String str6) {
            this.str6 = str6;
        }
    }
 
    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;
    }
 
    public String getProductCode() {
        return productCode;
    }
 
    public void setProductCode(String productCode) {
        this.productCode = productCode;
    }
}