cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.cm.passingStationCollection.model.result;
2
3 import lombok.Data;
4 import java.util.Date;
5 import java.io.Serializable;
6
7 /**
8  * <p>
9  * 产品过站采集
10  * </p>
11  *
12  * @author zrm
13  * @since 2023-02-11
14  */
15 @Data
16 public class PassingStationCollectionResult implements Serializable {
17
18     private static final long serialVersionUID = 1L;
19
20
21     /**
22      * 主键id
23      */
24     private Long id;
25
26     /**
27      * 工单编号
28      */
29     private String workOrderNo;
30
31     /**
32      * 节拍时间
33      */
34     private String beatTime;
35
99991a 36     private String num;
37
71e81e 38     private String outRsSignState;
39
40     private String stateTpls;
41
42     /**
43      * 总成序列号
44      */
45     private String sfcCode;
46
47     /**
48      * 产品编号
49      */
50     private String productCode;
51
52     /**
53      * 产线编号
54      */
55     private String productionLine;
56
57     /**
58      * 工位编号
59      */
60     private String locationCode;
61
62     /**
63      * 设备编号
64      */
65     private String equipmentNo;
66
67     /**
68      * 入站时间
69      */
70     private Date inboundTime;
71
72     /**
73      * 出站时间
74      */
75     private Date outboundTime;
76
77     /**
78      * 入站是否合格
79      */
80     private String inRsSign;
81
82     /**
83      * 入站NG原因
84      */
85     private String inMsgSign;
86
87     /**
88      * 出站是否合格
89      */
90     private String outRsSign;
91
92     /**
93      * 出站NG原因
94      */
95     private String outMsgSign;
96
97     /**
98      * 采集时间
99      */
100     private Date collectionTime;
101
102     /**
103      * 预留字段1
104      */
105     private String spareField1;
106
107     private String qualified;
108
109     private String unqualified;
110
111     private String passRate;
112
113
114     /**
115      * 预留字段2
116      */
117     private String spareField2;
118
119     /**
120      * 创建用户
121      */
122     private String createUser;
123
124     /**
125      * 创建时间
126      */
127     private Date createTime;
128
129     /**
130      * 更改用户
131      */
132     private String updateUser;
133
134     /**
135      * 更改时间
136      */
137     private Date updateTime;
138
139 }