whycxzp
2025-04-25 ddfc8c2a98cedc0010623afe93d41a8f853df7f5
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
package com.whyc.dto;
 
/**
 *
 * 托盘库位
 * {
 * "pallet_ID": 35,
 * "palletCode": "10001",
 * "status": 0,
 * "out_ID": null,
 * "material_ID": 73,
 * "ha": "350AH",
 * "v": "4v",
 * "pos": "活化房左侧库位1",
 * "supper": "圣阳",
 * "activation": 0
 * }
 */
public class WmsPallet {
    private Integer pallet_ID;
    private String palletCode;
    private Integer status;
    private Integer out_ID;
    private Integer material_ID;
    private String ha;
    private String v;
    private String pos;
    private String supper;
    private Integer activation;
 
    private Integer chechv;
    private Integer resistance;
 
    public Integer getPallet_ID() {
        return pallet_ID;
    }
 
    public void setPallet_ID(Integer pallet_ID) {
        this.pallet_ID = pallet_ID;
    }
 
    public String getPalletCode() {
        return palletCode;
    }
 
    public void setPalletCode(String palletCode) {
        this.palletCode = palletCode;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Integer getOut_ID() {
        return out_ID;
    }
 
    public void setOut_ID(Integer out_ID) {
        this.out_ID = out_ID;
    }
 
    public Integer getMaterial_ID() {
        return material_ID;
    }
 
    public void setMaterial_ID(Integer material_ID) {
        this.material_ID = material_ID;
    }
 
    public String getHa() {
        return ha;
    }
 
    public void setHa(String ha) {
        this.ha = ha;
    }
 
    public String getV() {
        return v;
    }
 
    public void setV(String v) {
        this.v = v;
    }
 
    public String getPos() {
        return pos;
    }
 
    public void setPos(String pos) {
        this.pos = pos;
    }
 
    public String getSupper() {
        return supper;
    }
 
    public void setSupper(String supper) {
        this.supper = supper;
    }
 
    public Integer getActivation() {
        return activation;
    }
 
    public void setActivation(Integer activation) {
        this.activation = activation;
    }
 
    public Integer getChechv() {
        return chechv;
    }
 
    public void setChechv(Integer chechv) {
        this.chechv = chechv;
    }
 
    public Integer getResistance() {
        return resistance;
    }
 
    public void setResistance(Integer resistance) {
        this.resistance = resistance;
    }
}