懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
提交 | 用户 | 时间
8286c6 1 package cn.stylefeng.guns.modular.cm.paramCollection.model.result;
2
3 import com.baomidou.mybatisplus.annotation.TableField;
4 import lombok.Data;
5 import java.util.Date;
6 import java.io.Serializable;
7
8 /**
9  * <p>
10  * 设备产品过程参数采集
11  * </p>
12  *
13  * @author zrm
14  * @since 2023-02-11
15  */
16 @Data
17 public class ParamCollectionResult implements Serializable {
18
19     private static final long serialVersionUID = 1L;
20
21
22     /**
23      * 主键id
24      */
25     private Long id;
26
27     private String state;
28
29     private Date startTime;
30
31
32     private Date endTime;
33
34     /**
35      * 参数名称
36      */
37     private String paramName;
38
39     /**
40      * 单位
41      */
42     private String unit;
43
44     /**
45      * 工单编号
46      */
47     private String workOrderNo;
48
49     /**
50      * 总成序列号
51      */
52     private String sfcCode;
53
54     /**
55      * 产品编号
56      */
57     private String productCode;
58
59     /**
60      * 产线编号
61      */
62     private String productionLine;
63
64     /**
65      * 工位编号
66      */
67     private String locationCode;
68
69     /**
70      * 设备编号
71      */
72     private String equipmentNo;
73
74     /**
75      * 参数编码
76      */
77     private String paramCode;
78
79     /**
80      * 参数值
81      */
82     private String paramValue;
83
84     /**
85      * 参数上限
86      */
87     private String paramUpper;
88
89     /**
90      * 参数下限
91      */
92     private String paramLower;
93
94     /**
95      * 标准值
96      */
97     private String paramStandard;
98
99     /**
100      * 采集时间
101      */
102     private Date collectionTime;
103
104     /**
105      * 预留字段1
106      */
107     private String spareField1;
108
109     /**
110      * 预留字段2
111      */
112     private String spareField2;
113
114     /**
115      * 创建用户
116      */
117     private String createUser;
118
119     /**
120      * 创建时间
121      */
122     private Date createTime;
123
124     /**
125      * 更改用户
126      */
127     private String updateUser;
128
129     /**
130      * 更改时间
131      */
132     private Date updateTime;
133
134 }