admin
2024-01-08 22f70cc8b2ba603e82bba058db320dced48f9470
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.bomInfo.model.params;
2
3 import lombok.Data;
4 import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
5 import java.util.Date;
6 import java.io.Serializable;
7 import java.math.BigDecimal;
8
9 /**
10  * <p>
11  * bom信息
12  * </p>
13  *
14  * @author 
15  * @since 2022-10-24
16  */
17 @Data
18 public class BomInfoParam implements Serializable, BaseValidatingParam {
19
20     private static final long serialVersionUID = 1L;
21
22
23     /**
24      * 主键id
25      */
26     private Long id;
27
28     /**
29      * 物料编号
30      */
31     private String materialCode;
32
33     /**
34      * 物料名称
35      */
36     private String materialName;
37
38     /**
39      * 产品编号
40      */
41     private String productCode;
42
43     /**
44      * 产品名称
45      */
46     private String productName;
47
48     /**
49      * 工位编号
50      */
51     private String locationCode;
52
53     /**
54      * 工位名称
55      */
56     private String locationName;
57
58     private String loadingCode;
59     private String loadingName;
60     private String workorderNo;
61     private String scanningCodeFlag;
62
63
64     /**
65      * 追溯类型
66      */
67     private String traceabilityType;
68
69     /**
70      * 数量
71      */
72     private Long quantity;
73
74     /**
75      * 备注
76      */
77     private String remarks;
78
79     @Override
80     public String checkParam() {
81         return null;
82     }
83
84     public Long getId() {
85         return id;
86     }
87     public String getLoadingCode() {
88         return loadingCode;
89     }
90
91     public void setLoadingCode(String loadingCode) {
92         this.loadingCode = loadingCode;
93     }
94
95     public String getLoadingName() {
96         return loadingName;
97     }
98
99     public void setLoadingName(String loadingName) {
100         this.loadingName = loadingName;
101     }
102     public void setId(Long id) {
103         this.id = id;
104     }
105
106     public String getMaterialCode() {
107         return materialCode;
108     }
109
110     public void setMaterialCode(String materialCode) {
111         this.materialCode = materialCode;
112     }
113
114     public String getMaterialName() {
115         return materialName;
116     }
117
118     public void setMaterialName(String materialName) {
119         this.materialName = materialName;
120     }
121
122     public String getProductCode() {
123         return productCode;
124     }
125
126     public void setProductCode(String productCode) {
127         this.productCode = productCode;
128     }
129
130     public String getProductName() {
131         return productName;
132     }
133
134     public void setProductName(String productName) {
135         this.productName = productName;
136     }
137
138     public String getLocationCode() {
139         return locationCode;
140     }
141
142     public void setLocationCode(String locationCode) {
143         this.locationCode = locationCode;
144     }
145
146     public String getLocationName() {
147         return locationName;
148     }
149
150     public void setLocationName(String locationName) {
151         this.locationName = locationName;
152     }
153
154     public String getTraceabilityType() {
155         return traceabilityType;
156     }
157
158     public void setTraceabilityType(String traceabilityType) {
159         this.traceabilityType = traceabilityType;
160     }
161
162     public Long getQuantity() {
163         return quantity;
164     }
165
166     public void setQuantity(Long quantity) {
167         this.quantity = quantity;
168     }
169
170     public String getRemarks() {
171         return remarks;
172     }
173
174     public void setRemarks(String remarks) {
175         this.remarks = remarks;
176     }
177 }