cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.qc.badCollection.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  * 不良数据采集
11  * </p>
12  *
13  * @author ruimin
14  * @since 2023-03-11
15  */
16 @Data
17 public class BadCollectionResult 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 workOrderNo;
31
32     /**
33      * 总成序列号
34      */
35     private String sfcCode;
36
37     /**
38      * 车间编码
39      */
40     private String workshopCode;
41
42     /**
43      * 产品编号
44      */
45     private String productCode;
46
47     /**
48      * 产线编号
49      */
50     private String productionLine;
51
52     /**
53      * 工位编号
54      */
55     private String locationCode;
56
57     /**
58      * 设备编号
59      */
60     private String equipmentNo;
61
62     /**
63      * 不良类型编码
64      */
65     private String typeCode;
66
67     /**
68      * 不良类型名称
69      */
70     private String typeName;
71
72     /**
73      * 不良原因编码
74      */
75     private String badCode;
76
77     /**
78      * 不良原因
79      */
80     private String badDesc;
81
82     /**
83      * 采集时间
84      */
85     private Date collectionTime;
86
87     /**
88      * 采集用户
89      */
90     private String collectionUser;
91
92     /**
93      * 预留字段1
94      */
95     private String spareField1;
96
97     /**
98      * 预留字段2
99      */
100     private String spareField2;
101
102     /**
103      * 创建用户
104      */
105     private String createUser;
106
107     /**
108      * 创建时间
109      */
110     private Date createTime;
111
112     /**
113      * 更改用户
114      */
115     private String updateUser;
116
117     /**
118      * 更改时间
119      */
120     private Date updateTime;
121
122 }