懒羊羊
2024-01-10 a556270e96bc6e7fa4202c466d57cc75f778c614
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.bomInfo.model.result;
2
3 import lombok.Data;
4 import java.util.Date;
5 import java.io.Serializable;
6 import java.math.BigDecimal;
7
8 /**
9  * <p>
10  * bom信息
11  * </p>
12  *
13  * @author 
14  * @since 2022-10-24
15  */
16 @Data
17 public class BomInfoResult implements Serializable {
18
19     private static final long serialVersionUID = 1L;
20
21
22     /**
23      * 主键id
24      */
25     private Long id;
26
27     /**
28      * 物料编号
29      */
30     private String materialCode;
31
32     /**
33      * 物料名称
34      */
35     private String materialName;
36
37     private String workorderNo;
38
39     private String scanningCodeFlag;
40
41     private String state;
42
43     /**
44      * 产品编号
45      */
46     private String productCode;
47
48     /**
49      * 产品名称
50      */
51     private String productName;
52
53     /**
54      * 工位编号
55      */
56     private String locationCode;
57
a55627 58     private String lineCode;
59
60
71e81e 61     /**
62      * 工位名称
63      */
64     private String locationName;
65     private String loadingCode;
66     private String loadingName;
67     /**
68      * 追溯类型
69      */
70     private String traceabilityType;
71
72     /**
73      * 数量
74      */
75     private Long quantity;
76
77     /**
78      * 备注
79      */
80     private String remarks;
81
82 }