自动化立体仓库 - WMS系统
#
lsh
2024-12-24 24b39a858545b192bbba4ee336af201b45f4d1dd
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
package com.zy.asrs.entity.result;
 
public class FindLocNoAttributeVo {
    private String matnr = "";
    private String specs = "";
    private String batch = "";
    private String grade = "";
    private String brand = "";
    private String standby1 = "";
    private String standby2 = "";
    private String standby3 = "";
 
    public FindLocNoAttributeVo() {
    }
 
    public FindLocNoAttributeVo(String matnr) {
        this.matnr = matnr;
    }
 
    public FindLocNoAttributeVo(String matnr, String batch) {
        this.matnr = matnr;
        this.batch = batch;
    }
 
    public FindLocNoAttributeVo(String matnr, String batch, String brand) {
        this.matnr = matnr;
        this.batch = batch;
        this.brand = brand;
    }
 
    public FindLocNoAttributeVo(String matnr, String batch, String standby1, String standby2, String standby3) {
        this.matnr = matnr;
        this.batch = batch;
        this.standby1 = standby1;
        this.standby2 = standby2;
        this.standby3 = standby3;
    }
 
    public FindLocNoAttributeVo(String matnr, String specs, String batch, String grade, String brand, String standby1, String standby2, String standby3) {
        this.matnr = matnr;
        this.specs = specs;
        this.batch = batch;
        this.grade = grade;
        this.brand = brand;
        this.standby1 = standby1;
        this.standby2 = standby2;
        this.standby3 = standby3;
    }
 
    public String getMatnr() {
        return matnr;
    }
 
    public void setMatnr(String matnr) {
        this.matnr = matnr;
    }
 
    public String getSpecs() {
        return specs;
    }
 
    public void setSpecs(String specs) {
        this.specs = specs;
    }
 
    public String getBatch() {
        return batch;
    }
 
    public void setBatch(String batch) {
        this.batch = batch;
    }
 
    public String getGrade() {
        return grade;
    }
 
    public void setGrade(String grade) {
        this.grade = grade;
    }
 
    public String getBrand() {
        return brand;
    }
 
    public void setBrand(String brand) {
        this.brand = brand;
    }
 
    public String getStandby1() {
        return standby1;
    }
 
    public void setStandby1(String standby1) {
        this.standby1 = standby1;
    }
 
    public String getStandby2() {
        return standby2;
    }
 
    public void setStandby2(String standby2) {
        this.standby2 = standby2;
    }
 
    public String getStandby3() {
        return standby3;
    }
 
    public void setStandby3(String standby3) {
        this.standby3 = standby3;
    }
}