whycxzp
2025-03-18 d60979e98c6492b562e38bfe6f7925a3809892fe
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
package com.whyc.dto;
 
/**
 * 仓储系统-物料信息
 */
public class WmsMaterialDto {
 
    private Integer materialId;
 
    private String materialCode;
    private String materialName;
    /**物料类型 1=载具,2=电池*/
    private Integer materialType;
    /**物料规格*/
    private Integer modelType;
    /**标称容量*/
    private String specification;
    /**标称电压*/
    private String unit;
    /**品牌*/
    private String supplier;
 
    public Integer getMaterialId() {
        return materialId;
    }
 
    public void setMaterialId(Integer materialId) {
        this.materialId = materialId;
    }
 
    public String getMaterialCode() {
        return materialCode;
    }
 
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
 
    public String getMaterialName() {
        return materialName;
    }
 
    public void setMaterialName(String materialName) {
        this.materialName = materialName;
    }
 
    public Integer getMaterialType() {
        return materialType;
    }
 
    public void setMaterialType(Integer materialType) {
        this.materialType = materialType;
    }
 
    public Integer getModelType() {
        return modelType;
    }
 
    public void setModelType(Integer modelType) {
        this.modelType = modelType;
    }
 
    public String getSpecification() {
        return specification;
    }
 
    public void setSpecification(String specification) {
        this.specification = specification;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public String getSupplier() {
        return supplier;
    }
 
    public void setSupplier(String supplier) {
        this.supplier = supplier;
    }
}