admin
2024-10-15 6d313a4a6f9f9d7ea65ec50ab0d4491e595edb97
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.paramCollection.domain;
2
ddb300 3 import com.baomidou.mybatisplus.annotation.TableField;
768498 4 import com.fasterxml.jackson.annotation.JsonFormat;
e57a89 5 import com.jcdm.common.annotation.Excel;
6 import com.jcdm.common.core.domain.BaseEntity;
768498 7 import com.jcdm.main.bs.formulaChild.domain.BsFormulaChildInfo;
49c784 8 import lombok.Data;
e57a89 9 import org.apache.commons.lang3.builder.ToStringBuilder;
10 import org.apache.commons.lang3.builder.ToStringStyle;
11
12 import java.util.Date;
49c784 13 import java.util.Objects;
e57a89 14
15 /**
16  * 设备产品过程参数采集对象 da_param_collection
17  * 
18  * @author yyt
19  * @date 2023-12-13
20  */
49c784 21 @Data
e57a89 22 public class DaParamCollection extends BaseEntity
23 {
24     private static final long serialVersionUID = 1L;
25
26     /** 主键id */
27     private Long id;
28
29     /** 工单编号 */
30     @Excel(name = "工单编号")
31     private String workOrderNo;
32
33     /** 总成序列号 */
34     @Excel(name = "总成序列号")
35     private String sfcCode;
36
37     /** 产品编号 */
38     @Excel(name = "产品编号")
39     private String productCode;
40
41     /** 产线编号 */
42     @Excel(name = "产线编号")
43     private String productionLine;
44
45     /** 工位编号 */
46     @Excel(name = "工位编号")
47     private String locationCode;
48
49     /** 设备编号 */
50     @Excel(name = "设备编号")
51     private String equipmentNo;
52
53     /** 参数编码 */
54     @Excel(name = "参数编码")
55     private String paramCode;
56
57     /** 参数值 */
58     @Excel(name = "参数值")
59     private String paramValue;
60
61     /** 参数上限 */
62     @Excel(name = "参数上限")
63     private String paramUpper;
64
65     /** 参数下限 */
66     @Excel(name = "参数下限")
67     private String paramLower;
68
69     /** 标准值 */
70     @Excel(name = "标准值")
71     private String paramStandard;
72
73     /** 采集时间 */
74     @Excel(name = "采集时间")
75     private Date collectionTime;
76
77     /** 预留字段1 */
7aca2b 78     private String moduleCode;
e57a89 79
80     /** 预留字段2 */
81     private String spareField2;
82
83     /** 创建用户 */
84     private String createUser;
85
86     /** 更改用户 */
87     private String updateUser;
88
89     /** 状态(1合格、2不合格) */
90     @Excel(name = "状态", readConverterExp = "1=合格、2不合格")
91     private String state;
92
93     /** 参数名称 */
94     @Excel(name = "参数名称")
95     private String paramName;
96
97     /** 单位 */
98     @Excel(name = "单位")
99     private String unit;
100
101     /** 类型 */
102     @Excel(name = "类型")
103     private String type;
104
ddb300 105     @TableField(exist = false)
b64ed2 106     private String model;
ddb300 107     @TableField(exist = false)
b64ed2 108     private String productBarcode;
109
ddb300 110     @TableField(exist = false)
49c784 111     private String tightenTheArray;
112
ddb300 113     @TableField(exist = false)
49c784 114     private String productModel;
115
ddb300 116     @TableField(exist = false)
A 117     private String yzSfcCode;
118
8cfe20 119     @TableField(exist = false)
A 120     private String weightValue;
121
768498 122     @TableField(exist = false)
A 123     private BsFormulaChildInfo formulaChildEntity;
124
125     @TableField(exist = false)
126     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
127     private Date inboundTime;
128
129     @TableField(exist = false)
130     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
131     private Date outboundTime;
132
01beb5 133     @TableField(exist = false)
A 134     private String screwNumber;
135
136     @TableField(exist = false)
137     private String torque;
138
139     @TableField(exist = false)
140     private String angle;
141
142     @TableField(exist = false)
143     private String torqueResult;
144
145     @TableField(exist = false)
146     private String angleResult;
147
768498 148
A 149     public Date getInboundTime() {
150         return inboundTime;
151     }
152
153     public void setInboundTime(Date inboundTime) {
154         this.inboundTime = inboundTime;
155     }
156
157     public BsFormulaChildInfo getFormulaChildEntity() {
158         return formulaChildEntity;
159     }
160
161     public void setFormulaChildEntity(BsFormulaChildInfo formulaChildEntity) {
162         this.formulaChildEntity = formulaChildEntity;
163     }
164
49c784 165     public String getTightenTheArray() {
166         return tightenTheArray;
167     }
168
169     public void setTightenTheArray(String tightenTheArray) {
170         this.tightenTheArray = tightenTheArray;
171     }
172
b64ed2 173     public String getProductBarcode() {
174         return productBarcode;
175     }
176
177     public void setProductBarcode(String productBarcode) {
178         this.productBarcode = productBarcode;
179     }
180
181     public String getModel() {
182         return model;
183     }
184
185     public void setModel(String model) {
186         this.model = model;
187     }
188
189     public void setId(Long id)
e57a89 190     {
191         this.id = id;
192     }
193
194     public Long getId() 
195     {
196         return id;
197     }
198     public void setWorkOrderNo(String workOrderNo) 
199     {
200         this.workOrderNo = workOrderNo;
201     }
202
203     public String getWorkOrderNo() 
204     {
205         return workOrderNo;
206     }
207     public void setSfcCode(String sfcCode) 
208     {
209         this.sfcCode = sfcCode;
210     }
211
212     public String getSfcCode() 
213     {
214         return sfcCode;
215     }
216     public void setProductCode(String productCode) 
217     {
218         this.productCode = productCode;
219     }
220
221     public String getProductCode() 
222     {
223         return productCode;
224     }
225     public void setProductionLine(String productionLine) 
226     {
227         this.productionLine = productionLine;
228     }
229
230     public String getProductionLine() 
231     {
232         return productionLine;
233     }
234     public void setLocationCode(String locationCode) 
235     {
236         this.locationCode = locationCode;
237     }
238
239     public String getLocationCode() 
240     {
241         return locationCode;
242     }
243     public void setEquipmentNo(String equipmentNo) 
244     {
245         this.equipmentNo = equipmentNo;
246     }
247
248     public String getEquipmentNo() 
249     {
250         return equipmentNo;
251     }
252     public void setParamCode(String paramCode) 
253     {
254         this.paramCode = paramCode;
255     }
256
257     public String getParamCode() 
258     {
259         return paramCode;
260     }
261     public void setParamValue(String paramValue) 
262     {
263         this.paramValue = paramValue;
264     }
265
266     public String getParamValue() 
267     {
268         return paramValue;
269     }
270     public void setParamUpper(String paramUpper) 
271     {
272         this.paramUpper = paramUpper;
273     }
274
275     public String getParamUpper() 
276     {
277         return paramUpper;
278     }
279     public void setParamLower(String paramLower) 
280     {
281         this.paramLower = paramLower;
282     }
283
284     public String getParamLower() 
285     {
286         return paramLower;
287     }
288     public void setParamStandard(String paramStandard) 
289     {
290         this.paramStandard = paramStandard;
291     }
292
293     public String getParamStandard() 
294     {
295         return paramStandard;
296     }
297     public void setCollectionTime(Date collectionTime) 
298     {
299         this.collectionTime = collectionTime;
300     }
301
302     public Date getCollectionTime() 
303     {
304         return collectionTime;
305     }
7aca2b 306
A 307     public String getModuleCode() {
308         return moduleCode;
e57a89 309     }
310
7aca2b 311     public void setModuleCode(String moduleCode) {
A 312         this.moduleCode = moduleCode;
e57a89 313     }
7aca2b 314
A 315     public void setSpareField2(String spareField2)
e57a89 316     {
317         this.spareField2 = spareField2;
318     }
319
320     public String getSpareField2() 
321     {
322         return spareField2;
323     }
324     public void setCreateUser(String createUser) 
325     {
326         this.createUser = createUser;
327     }
328
329     public String getCreateUser() 
330     {
331         return createUser;
332     }
333     public void setUpdateUser(String updateUser) 
334     {
335         this.updateUser = updateUser;
336     }
337
338     public String getUpdateUser() 
339     {
340         return updateUser;
341     }
342     public void setState(String state) 
343     {
344         this.state = state;
345     }
346
347     public String getState() 
348     {
349         return state;
350     }
351     public void setParamName(String paramName) 
352     {
353         this.paramName = paramName;
354     }
355
356     public String getParamName() 
357     {
358         return paramName;
359     }
360     public void setUnit(String unit) 
361     {
362         this.unit = unit;
363     }
364
365     public String getUnit() 
366     {
367         return unit;
368     }
369     public void setType(String type) 
370     {
371         this.type = type;
372     }
373
374     public String getType() 
375     {
376         return type;
377     }
378
379     @Override
380     public String toString() {
381         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
382             .append("id", getId())
383             .append("workOrderNo", getWorkOrderNo())
384             .append("sfcCode", getSfcCode())
385             .append("productCode", getProductCode())
386             .append("productionLine", getProductionLine())
387             .append("locationCode", getLocationCode())
388             .append("equipmentNo", getEquipmentNo())
389             .append("paramCode", getParamCode())
390             .append("paramValue", getParamValue())
391             .append("paramUpper", getParamUpper())
392             .append("paramLower", getParamLower())
393             .append("paramStandard", getParamStandard())
394             .append("collectionTime", getCollectionTime())
395             .append("spareField2", getSpareField2())
396             .append("createUser", getCreateUser())
397             .append("createTime", getCreateTime())
398             .append("updateUser", getUpdateUser())
399             .append("updateTime", getUpdateTime())
400             .append("state", getState())
401             .append("paramName", getParamName())
402             .append("unit", getUnit())
403             .append("type", getType())
404             .toString();
405     }
406 }