cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.dq.materialTraceability.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import com.baomidou.mybatisplus.annotation.IdType;
5 import java.util.Date;
6 import com.baomidou.mybatisplus.annotation.TableId;
7 import com.baomidou.mybatisplus.annotation.TableField;
8 import java.io.Serializable;
9
10 /**
11  * <p>
12  * 物料追溯
13  * </p>
14  *
15  * @author cl
16  * @since 2022-10-29
17  */
18 @TableName("dq_material_traceability")
19 public class MaterialTraceability implements Serializable {
20
21     private static final long serialVersionUID=1L;
22
23     /**
24      * ID
25      */
26       @TableId(value = "id", type = IdType.ID_WORKER)
27     private Long id;
28
29     /**
30      * 产品序列号
31      */
32     @TableField("product_no")
33     private String productNo;
34
35     /**
36      * 壳体条码
37      */
38     @TableField("housing_bar_code")
39     private String housingBarCode;
40
41     /**
42      * 生产工单号
43      */
44     @TableField("work_order_no")
45     private String workOrderNo;
46
47     /**
48      * 产品编码
49      */
50     @TableField("product_code")
51     private String productCode;
52
53     /**
54      * 产品名称
55      */
56     @TableField("product_name")
57     private String productName;
58
59     /**
60      * 产线编号
61      */
62     @TableField("line_code")
63     private String lineCode;
64
65     /**
66      * 产线名称
67      */
68     @TableField("line_name")
69     private String lineName;
70
71     /**
72      * 工位编号
73      */
74     @TableField("location_code")
75     private String locationCode;
76
77     /**
78      * 工位名称
79      */
80     @TableField("location_name")
81     private String locationName;
82
83     /**
84      * 物料编号
85      */
86     @TableField("material_code")
87     private String materialCode;
88
89     /**
90      * 物料描述
91      */
92     @TableField("material_name")
93     private String materialName;
94
95     /**
96      * 物料批次号
97      */
98     @TableField("material_batch_no")
99     private String materialBatchNo;
100
101     /**
102      * 物料序列号
103      */
104     @TableField("material_serial_no")
105     private String materialSerialNo;
106
107     /**
108      * 数量
109      */
110     @TableField("assembly_qty")
111     private Integer assemblyQty;
112
113     /**
114      * 装配用户
115      */
116     @TableField("assembly_user")
117     private String assemblyUser;
118
119     /**
120      * 装配时间
121      */
122     @TableField("assembly_time")
123     private Date assemblyTime;
124
125     /**
126      * 预留字段1
127      */
128     @TableField("spare_field_1")
129     private String spareField1;
130
131     /**
132      * 预留字段2
133      */
134     @TableField("spare_field_2")
135     private String spareField2;
136
137     /**
138      * 预留字段3
139      */
140     @TableField("spare_field_3")
141     private Long spareField3;
142
143     /**
144      * 预留字段4
145      */
146     @TableField("spare_field_4")
147     private Long spareField4;
148
149     /**
150      * 备注
151      */
152     @TableField("remarks")
153     private String remarks;
154
155
156     public Long getId() {
157         return id;
158     }
159
160     public void setId(Long id) {
161         this.id = id;
162     }
163
164     public String getProductNo() {
165         return productNo;
166     }
167
168     public void setProductNo(String productNo) {
169         this.productNo = productNo;
170     }
171
172     public String getHousingBarCode() {
173         return housingBarCode;
174     }
175
176     public void setHousingBarCode(String housingBarCode) {
177         this.housingBarCode = housingBarCode;
178     }
179
180     public String getWorkOrderNo() {
181         return workOrderNo;
182     }
183
184     public void setWorkOrderNo(String workOrderNo) {
185         this.workOrderNo = workOrderNo;
186     }
187
188     public String getProductCode() {
189         return productCode;
190     }
191
192     public void setProductCode(String productCode) {
193         this.productCode = productCode;
194     }
195
196     public String getProductName() {
197         return productName;
198     }
199
200     public void setProductName(String productName) {
201         this.productName = productName;
202     }
203
204     public String getLineCode() {
205         return lineCode;
206     }
207
208     public void setLineCode(String lineCode) {
209         this.lineCode = lineCode;
210     }
211
212     public String getLineName() {
213         return lineName;
214     }
215
216     public void setLineName(String lineName) {
217         this.lineName = lineName;
218     }
219
220     public String getLocationCode() {
221         return locationCode;
222     }
223
224     public void setLocationCode(String locationCode) {
225         this.locationCode = locationCode;
226     }
227
228     public String getLocationName() {
229         return locationName;
230     }
231
232     public void setLocationName(String locationName) {
233         this.locationName = locationName;
234     }
235
236     public String getMaterialCode() {
237         return materialCode;
238     }
239
240     public void setMaterialCode(String materialCode) {
241         this.materialCode = materialCode;
242     }
243
244     public String getMaterialName() {
245         return materialName;
246     }
247
248     public void setMaterialName(String materialName) {
249         this.materialName = materialName;
250     }
251
252     public String getMaterialBatchNo() {
253         return materialBatchNo;
254     }
255
256     public void setMaterialBatchNo(String materialBatchNo) {
257         this.materialBatchNo = materialBatchNo;
258     }
259
260     public String getMaterialSerialNo() {
261         return materialSerialNo;
262     }
263
264     public void setMaterialSerialNo(String materialSerialNo) {
265         this.materialSerialNo = materialSerialNo;
266     }
267
268     public Integer getAssemblyQty() {
269         return assemblyQty;
270     }
271
272     public void setAssemblyQty(Integer assemblyQty) {
273         this.assemblyQty = assemblyQty;
274     }
275
276     public String getAssemblyUser() {
277         return assemblyUser;
278     }
279
280     public void setAssemblyUser(String assemblyUser) {
281         this.assemblyUser = assemblyUser;
282     }
283
284     public Date getAssemblyTime() {
285         return assemblyTime;
286     }
287
288     public void setAssemblyTime(Date assemblyTime) {
289         this.assemblyTime = assemblyTime;
290     }
291
292     public String getSpareField1() {
293         return spareField1;
294     }
295
296     public void setSpareField1(String spareField1) {
297         this.spareField1 = spareField1;
298     }
299
300     public String getSpareField2() {
301         return spareField2;
302     }
303
304     public void setSpareField2(String spareField2) {
305         this.spareField2 = spareField2;
306     }
307
308     public Long getSpareField3() {
309         return spareField3;
310     }
311
312     public void setSpareField3(Long spareField3) {
313         this.spareField3 = spareField3;
314     }
315
316     public Long getSpareField4() {
317         return spareField4;
318     }
319
320     public void setSpareField4(Long spareField4) {
321         this.spareField4 = spareField4;
322     }
323
324     public String getRemarks() {
325         return remarks;
326     }
327
328     public void setRemarks(String remarks) {
329         this.remarks = remarks;
330     }
331
332     @Override
333     public String toString() {
334         return "MaterialTraceability{" +
335         "id=" + id +
336         ", productNo=" + productNo +
337         ", housingBarCode=" + housingBarCode +
338         ", workOrderNo=" + workOrderNo +
339         ", productCode=" + productCode +
340         ", productName=" + productName +
341         ", lineCode=" + lineCode +
342         ", lineName=" + lineName +
343         ", locationCode=" + locationCode +
344         ", locationName=" + locationName +
345         ", materialCode=" + materialCode +
346         ", materialName=" + materialName +
347         ", materialBatchNo=" + materialBatchNo +
348         ", materialSerialNo=" + materialSerialNo +
349         ", assemblyQty=" + assemblyQty +
350         ", assemblyUser=" + assemblyUser +
351         ", assemblyTime=" + assemblyTime +
352         ", spareField1=" + spareField1 +
353         ", spareField2=" + spareField2 +
354         ", spareField3=" + spareField3 +
355         ", spareField4=" + spareField4 +
356         ", remarks=" + remarks +
357         "}";
358     }
359 }