yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
package com.qianwen.smartman.modules.cps.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.math.BigDecimal;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/WareMaterialStorageVO.class */
public class WareMaterialStorageVO implements Serializable {
    private static final long serialVersionUID = -2803441825486796594L;
    @ApiModelProperty(value = "主键", dataType = "java.lang.String")
    private Long id;
    @ApiModelProperty(value = "物料id", dataType = "java.lang.String")
    private Long materialId;
    @ApiModelProperty(value = "库位id", dataType = "java.lang.String")
    private Long warehouseStationId;
    @ApiModelProperty("物料编号")
    private String materialCode;
    @ApiModelProperty("物料名称")
    private String materialName;
    @ApiModelProperty("物料规格")
    private String materialStandardModel;
    @ApiModelProperty("物料单位")
    private String materialUnit;
    @ApiModelProperty(value = "物料类型id", dataType = "java.lang.String")
    private Long typeId;
    @ApiModelProperty("物料类型编码")
    private String typeCode;
    @ApiModelProperty("物料类型名称")
    private String typeName;
    @ApiModelProperty("物料属性")
    private Integer property;
    @ApiModelProperty("是否必检")
    private Integer isMustCheck;
    @ApiModelProperty("额定库存")
    private BigDecimal lowerLimit;
    @ApiModelProperty("安全库存")
    private BigDecimal upperLimit;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setMaterialId(final Long materialId) {
        this.materialId = materialId;
    }
 
    public void setWarehouseStationId(final Long warehouseStationId) {
        this.warehouseStationId = warehouseStationId;
    }
 
    public void setMaterialCode(final String materialCode) {
        this.materialCode = materialCode;
    }
 
    public void setMaterialName(final String materialName) {
        this.materialName = materialName;
    }
 
    public void setMaterialStandardModel(final String materialStandardModel) {
        this.materialStandardModel = materialStandardModel;
    }
 
    public void setMaterialUnit(final String materialUnit) {
        this.materialUnit = materialUnit;
    }
 
    public void setTypeId(final Long typeId) {
        this.typeId = typeId;
    }
 
    public void setTypeCode(final String typeCode) {
        this.typeCode = typeCode;
    }
 
    public void setTypeName(final String typeName) {
        this.typeName = typeName;
    }
 
    public void setProperty(final Integer property) {
        this.property = property;
    }
 
    public void setIsMustCheck(final Integer isMustCheck) {
        this.isMustCheck = isMustCheck;
    }
 
    public void setLowerLimit(final BigDecimal lowerLimit) {
        this.lowerLimit = lowerLimit;
    }
 
    public void setUpperLimit(final BigDecimal upperLimit) {
        this.upperLimit = upperLimit;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WareMaterialStorageVO) {
            WareMaterialStorageVO other = (WareMaterialStorageVO) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$materialId = getMaterialId();
                Object other$materialId = other.getMaterialId();
                if (this$materialId == null) {
                    if (other$materialId != null) {
                        return false;
                    }
                } else if (!this$materialId.equals(other$materialId)) {
                    return false;
                }
                Object this$warehouseStationId = getWarehouseStationId();
                Object other$warehouseStationId = other.getWarehouseStationId();
                if (this$warehouseStationId == null) {
                    if (other$warehouseStationId != null) {
                        return false;
                    }
                } else if (!this$warehouseStationId.equals(other$warehouseStationId)) {
                    return false;
                }
                Object this$typeId = getTypeId();
                Object other$typeId = other.getTypeId();
                if (this$typeId == null) {
                    if (other$typeId != null) {
                        return false;
                    }
                } else if (!this$typeId.equals(other$typeId)) {
                    return false;
                }
                Object this$property = getProperty();
                Object other$property = other.getProperty();
                if (this$property == null) {
                    if (other$property != null) {
                        return false;
                    }
                } else if (!this$property.equals(other$property)) {
                    return false;
                }
                Object this$isMustCheck = getIsMustCheck();
                Object other$isMustCheck = other.getIsMustCheck();
                if (this$isMustCheck == null) {
                    if (other$isMustCheck != null) {
                        return false;
                    }
                } else if (!this$isMustCheck.equals(other$isMustCheck)) {
                    return false;
                }
                Object this$materialCode = getMaterialCode();
                Object other$materialCode = other.getMaterialCode();
                if (this$materialCode == null) {
                    if (other$materialCode != null) {
                        return false;
                    }
                } else if (!this$materialCode.equals(other$materialCode)) {
                    return false;
                }
                Object this$materialName = getMaterialName();
                Object other$materialName = other.getMaterialName();
                if (this$materialName == null) {
                    if (other$materialName != null) {
                        return false;
                    }
                } else if (!this$materialName.equals(other$materialName)) {
                    return false;
                }
                Object this$materialStandardModel = getMaterialStandardModel();
                Object other$materialStandardModel = other.getMaterialStandardModel();
                if (this$materialStandardModel == null) {
                    if (other$materialStandardModel != null) {
                        return false;
                    }
                } else if (!this$materialStandardModel.equals(other$materialStandardModel)) {
                    return false;
                }
                Object this$materialUnit = getMaterialUnit();
                Object other$materialUnit = other.getMaterialUnit();
                if (this$materialUnit == null) {
                    if (other$materialUnit != null) {
                        return false;
                    }
                } else if (!this$materialUnit.equals(other$materialUnit)) {
                    return false;
                }
                Object this$typeCode = getTypeCode();
                Object other$typeCode = other.getTypeCode();
                if (this$typeCode == null) {
                    if (other$typeCode != null) {
                        return false;
                    }
                } else if (!this$typeCode.equals(other$typeCode)) {
                    return false;
                }
                Object this$typeName = getTypeName();
                Object other$typeName = other.getTypeName();
                if (this$typeName == null) {
                    if (other$typeName != null) {
                        return false;
                    }
                } else if (!this$typeName.equals(other$typeName)) {
                    return false;
                }
                Object this$lowerLimit = getLowerLimit();
                Object other$lowerLimit = other.getLowerLimit();
                if (this$lowerLimit == null) {
                    if (other$lowerLimit != null) {
                        return false;
                    }
                } else if (!this$lowerLimit.equals(other$lowerLimit)) {
                    return false;
                }
                Object this$upperLimit = getUpperLimit();
                Object other$upperLimit = other.getUpperLimit();
                return this$upperLimit == null ? other$upperLimit == null : this$upperLimit.equals(other$upperLimit);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WareMaterialStorageVO;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $materialId = getMaterialId();
        int result2 = (result * 59) + ($materialId == null ? 43 : $materialId.hashCode());
        Object $warehouseStationId = getWarehouseStationId();
        int result3 = (result2 * 59) + ($warehouseStationId == null ? 43 : $warehouseStationId.hashCode());
        Object $typeId = getTypeId();
        int result4 = (result3 * 59) + ($typeId == null ? 43 : $typeId.hashCode());
        Object $property = getProperty();
        int result5 = (result4 * 59) + ($property == null ? 43 : $property.hashCode());
        Object $isMustCheck = getIsMustCheck();
        int result6 = (result5 * 59) + ($isMustCheck == null ? 43 : $isMustCheck.hashCode());
        Object $materialCode = getMaterialCode();
        int result7 = (result6 * 59) + ($materialCode == null ? 43 : $materialCode.hashCode());
        Object $materialName = getMaterialName();
        int result8 = (result7 * 59) + ($materialName == null ? 43 : $materialName.hashCode());
        Object $materialStandardModel = getMaterialStandardModel();
        int result9 = (result8 * 59) + ($materialStandardModel == null ? 43 : $materialStandardModel.hashCode());
        Object $materialUnit = getMaterialUnit();
        int result10 = (result9 * 59) + ($materialUnit == null ? 43 : $materialUnit.hashCode());
        Object $typeCode = getTypeCode();
        int result11 = (result10 * 59) + ($typeCode == null ? 43 : $typeCode.hashCode());
        Object $typeName = getTypeName();
        int result12 = (result11 * 59) + ($typeName == null ? 43 : $typeName.hashCode());
        Object $lowerLimit = getLowerLimit();
        int result13 = (result12 * 59) + ($lowerLimit == null ? 43 : $lowerLimit.hashCode());
        Object $upperLimit = getUpperLimit();
        return (result13 * 59) + ($upperLimit == null ? 43 : $upperLimit.hashCode());
    }
 
    public String toString() {
        return "WareMaterialStorageVO(id=" + getId() + ", materialId=" + getMaterialId() + ", warehouseStationId=" + getWarehouseStationId() + ", materialCode=" + getMaterialCode() + ", materialName=" + getMaterialName() + ", materialStandardModel=" + getMaterialStandardModel() + ", materialUnit=" + getMaterialUnit() + ", typeId=" + getTypeId() + ", typeCode=" + getTypeCode() + ", typeName=" + getTypeName() + ", property=" + getProperty() + ", isMustCheck=" + getIsMustCheck() + ", lowerLimit=" + getLowerLimit() + ", upperLimit=" + getUpperLimit() + ")";
    }
 
    public Long getId() {
        return this.id;
    }
 
    public Long getMaterialId() {
        return this.materialId;
    }
 
    public Long getWarehouseStationId() {
        return this.warehouseStationId;
    }
 
    public String getMaterialCode() {
        return this.materialCode;
    }
 
    public String getMaterialName() {
        return this.materialName;
    }
 
    public String getMaterialStandardModel() {
        return this.materialStandardModel;
    }
 
    public String getMaterialUnit() {
        return this.materialUnit;
    }
 
    public Long getTypeId() {
        return this.typeId;
    }
 
    public String getTypeCode() {
        return this.typeCode;
    }
 
    public String getTypeName() {
        return this.typeName;
    }
 
    public Integer getProperty() {
        return this.property;
    }
 
    public Integer getIsMustCheck() {
        return this.isMustCheck;
    }
 
    public BigDecimal getLowerLimit() {
        return this.lowerLimit;
    }
 
    public BigDecimal getUpperLimit() {
        return this.upperLimit;
    }
}