admin
6 天以前 768498719683f85e5ed19c73eb3d14cdbf420df4
提交 | 用户 | 时间
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
133
134     public Date getInboundTime() {
135         return inboundTime;
136     }
137
138     public void setInboundTime(Date inboundTime) {
139         this.inboundTime = inboundTime;
140     }
141
142     public BsFormulaChildInfo getFormulaChildEntity() {
143         return formulaChildEntity;
144     }
145
146     public void setFormulaChildEntity(BsFormulaChildInfo formulaChildEntity) {
147         this.formulaChildEntity = formulaChildEntity;
148     }
149
49c784 150     public String getTightenTheArray() {
151         return tightenTheArray;
152     }
153
154     public void setTightenTheArray(String tightenTheArray) {
155         this.tightenTheArray = tightenTheArray;
156     }
157
b64ed2 158     public String getProductBarcode() {
159         return productBarcode;
160     }
161
162     public void setProductBarcode(String productBarcode) {
163         this.productBarcode = productBarcode;
164     }
165
166     public String getModel() {
167         return model;
168     }
169
170     public void setModel(String model) {
171         this.model = model;
172     }
173
174     public void setId(Long id)
e57a89 175     {
176         this.id = id;
177     }
178
179     public Long getId() 
180     {
181         return id;
182     }
183     public void setWorkOrderNo(String workOrderNo) 
184     {
185         this.workOrderNo = workOrderNo;
186     }
187
188     public String getWorkOrderNo() 
189     {
190         return workOrderNo;
191     }
192     public void setSfcCode(String sfcCode) 
193     {
194         this.sfcCode = sfcCode;
195     }
196
197     public String getSfcCode() 
198     {
199         return sfcCode;
200     }
201     public void setProductCode(String productCode) 
202     {
203         this.productCode = productCode;
204     }
205
206     public String getProductCode() 
207     {
208         return productCode;
209     }
210     public void setProductionLine(String productionLine) 
211     {
212         this.productionLine = productionLine;
213     }
214
215     public String getProductionLine() 
216     {
217         return productionLine;
218     }
219     public void setLocationCode(String locationCode) 
220     {
221         this.locationCode = locationCode;
222     }
223
224     public String getLocationCode() 
225     {
226         return locationCode;
227     }
228     public void setEquipmentNo(String equipmentNo) 
229     {
230         this.equipmentNo = equipmentNo;
231     }
232
233     public String getEquipmentNo() 
234     {
235         return equipmentNo;
236     }
237     public void setParamCode(String paramCode) 
238     {
239         this.paramCode = paramCode;
240     }
241
242     public String getParamCode() 
243     {
244         return paramCode;
245     }
246     public void setParamValue(String paramValue) 
247     {
248         this.paramValue = paramValue;
249     }
250
251     public String getParamValue() 
252     {
253         return paramValue;
254     }
255     public void setParamUpper(String paramUpper) 
256     {
257         this.paramUpper = paramUpper;
258     }
259
260     public String getParamUpper() 
261     {
262         return paramUpper;
263     }
264     public void setParamLower(String paramLower) 
265     {
266         this.paramLower = paramLower;
267     }
268
269     public String getParamLower() 
270     {
271         return paramLower;
272     }
273     public void setParamStandard(String paramStandard) 
274     {
275         this.paramStandard = paramStandard;
276     }
277
278     public String getParamStandard() 
279     {
280         return paramStandard;
281     }
282     public void setCollectionTime(Date collectionTime) 
283     {
284         this.collectionTime = collectionTime;
285     }
286
287     public Date getCollectionTime() 
288     {
289         return collectionTime;
290     }
7aca2b 291
A 292     public String getModuleCode() {
293         return moduleCode;
e57a89 294     }
295
7aca2b 296     public void setModuleCode(String moduleCode) {
A 297         this.moduleCode = moduleCode;
e57a89 298     }
7aca2b 299
A 300     public void setSpareField2(String spareField2)
e57a89 301     {
302         this.spareField2 = spareField2;
303     }
304
305     public String getSpareField2() 
306     {
307         return spareField2;
308     }
309     public void setCreateUser(String createUser) 
310     {
311         this.createUser = createUser;
312     }
313
314     public String getCreateUser() 
315     {
316         return createUser;
317     }
318     public void setUpdateUser(String updateUser) 
319     {
320         this.updateUser = updateUser;
321     }
322
323     public String getUpdateUser() 
324     {
325         return updateUser;
326     }
327     public void setState(String state) 
328     {
329         this.state = state;
330     }
331
332     public String getState() 
333     {
334         return state;
335     }
336     public void setParamName(String paramName) 
337     {
338         this.paramName = paramName;
339     }
340
341     public String getParamName() 
342     {
343         return paramName;
344     }
345     public void setUnit(String unit) 
346     {
347         this.unit = unit;
348     }
349
350     public String getUnit() 
351     {
352         return unit;
353     }
354     public void setType(String type) 
355     {
356         this.type = type;
357     }
358
359     public String getType() 
360     {
361         return type;
362     }
363
364     @Override
365     public String toString() {
366         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
367             .append("id", getId())
368             .append("workOrderNo", getWorkOrderNo())
369             .append("sfcCode", getSfcCode())
370             .append("productCode", getProductCode())
371             .append("productionLine", getProductionLine())
372             .append("locationCode", getLocationCode())
373             .append("equipmentNo", getEquipmentNo())
374             .append("paramCode", getParamCode())
375             .append("paramValue", getParamValue())
376             .append("paramUpper", getParamUpper())
377             .append("paramLower", getParamLower())
378             .append("paramStandard", getParamStandard())
379             .append("collectionTime", getCollectionTime())
380             .append("spareField2", getSpareField2())
381             .append("createUser", getCreateUser())
382             .append("createTime", getCreateTime())
383             .append("updateUser", getUpdateUser())
384             .append("updateTime", getUpdateTime())
385             .append("state", getState())
386             .append("paramName", getParamName())
387             .append("unit", getUnit())
388             .append("type", getType())
389             .toString();
390     }
391 }