懒羊羊
2024-03-15 49c784e6ac7d71c5eaf7352e0a215842b4ca5456
提交 | 用户 | 时间
e57a89 1 package com.jcdm.main.da.collectionParamConf.domain;
2
3 import com.jcdm.common.annotation.Excel;
4 import com.jcdm.common.core.domain.BaseEntity;
5 import org.apache.commons.lang3.builder.ToStringBuilder;
6 import org.apache.commons.lang3.builder.ToStringStyle;
7
8 /**
9  * 采集参数配置对象 da_collection_param_conf
10  * 
11  * @author ruimin
12  * @date 2023-12-25
13  */
14 public class DaCollectionParamConf extends BaseEntity
15 {
16     private static final long serialVersionUID = 1L;
17
18     /** 主键id */
19     private Long id;
20
21     /** 工序编号 */
22     @Excel(name = "工序编号")
23     private String processesCode;
24
25     /** 参数集编码 */
26     @Excel(name = "参数集编码")
27     private String parameterSetCode;
28
29     /** 参数集名称 */
30     @Excel(name = "参数集名称")
31     private String parameterSetName;
32
33     /** 采集参数ID */
34     @Excel(name = "采集参数ID")
35     private String collectParameterId;
36
37     /** 采集参数名称 */
38     @Excel(name = "采集参数名称")
39     private String collectParameterName;
40
41     /** 是否作为对比参数 */
42     @Excel(name = "是否作为对比参数")
43     private String contrastParameterFlag;
44
45     /** 采集参数类型 */
46     @Excel(name = "采集参数类型")
47     private String collectParameterType;
48
49     /** 采集参数单位 */
50     @Excel(name = "采集参数单位")
51     private String collectParameterUnit;
52
53     /** 数据描述 */
54     @Excel(name = "数据描述")
55     private String Descriptives;
56
57     /** 上限值 */
58     @Excel(name = "上限值")
59     private String paramUpper;
60
61     /** 下限值 */
62     @Excel(name = "下限值")
63     private String paramLower;
64
65     /** 中心值 */
66     @Excel(name = "中心值")
67     private String paramCentral;
68
69     /** 产品编码 */
70     @Excel(name = "产品编码")
71     private String productCode;
72
73     /** 采集地址 */
74     @Excel(name = "采集地址")
75     private String gatherAddress;
76
77     /** 采集顺序 */
78     @Excel(name = "采集顺序")
79     private String gatherSequence;
80
81     /** 备注 */
82     @Excel(name = "备注")
83     private String remarks;
84
85     /** 创建用户 */
86     @Excel(name = "创建用户")
87     private String createUser;
88
89     /** 更改用户 */
90     @Excel(name = "更改用户")
91     private String updateUser;
92
93     /** 预留字段1 */
94     private String spareField1;
95
96     /** 预留字段2 */
97     private String spareField2;
98
99     /** 预留字段3 */
100     private String spareField3;
101
102     /** 预留字段4 */
103     private String spareField4;
104
679fb5 105     /** 工序名称 */
106     @Excel(name = "工序名称")
107     private String processesName;
108
109     /** 设备 */
110     @Excel(name = "设备")
111     private String device;
112
113     /** 项目 */
114     @Excel(name = "项目")
115     private String project;
116
117     /** 精度 */
118     @Excel(name = "精度")
119     private Long accuracy;
120
121     /** 数组长度 */
122     @Excel(name = "数组长度")
123     private Long arrayLength;
124
125     /** 采集频率 */
126     @Excel(name = "采集频率")
127     private String acquisitionFrequency;
128
129     /** 业务需求部门 */
130     @Excel(name = "业务需求部门")
131     private String demandDepartment;
132
133     /** 是否采集 */
134     @Excel(name = "是否采集")
135     private String whetherToCollect;
136
137     /** 默认值 */
138     @Excel(name = "默认值")
139     private String defaultValue;
140
49c784 141     /** 产品型号 */
142     @Excel(name = "产品型号")
143     private String productModel;
144
145
146     public String getProductModel() {
147         return productModel;
148     }
149
150     public void setProductModel(String productModel) {
151         this.productModel = productModel;
152     }
153
679fb5 154     public String getProcessesName() {
155         return processesName;
156     }
157
158     public void setProcessesName(String processesName) {
159         this.processesName = processesName;
160     }
161
162     public String getDevice() {
163         return device;
164     }
165
166     public void setDevice(String device) {
167         this.device = device;
168     }
169
170     public String getProject() {
171         return project;
172     }
173
174     public void setProject(String project) {
175         this.project = project;
176     }
177
178     public Long getAccuracy() {
179         return accuracy;
180     }
181
182     public void setAccuracy(Long accuracy) {
183         this.accuracy = accuracy;
184     }
185
186     public Long getArrayLength() {
187         return arrayLength;
188     }
189
190     public void setArrayLength(Long arrayLength) {
191         this.arrayLength = arrayLength;
192     }
193
194     public String getAcquisitionFrequency() {
195         return acquisitionFrequency;
196     }
197
198     public void setAcquisitionFrequency(String acquisitionFrequency) {
199         this.acquisitionFrequency = acquisitionFrequency;
200     }
201
202     public String getDemandDepartment() {
203         return demandDepartment;
204     }
205
206     public void setDemandDepartment(String demandDepartment) {
207         this.demandDepartment = demandDepartment;
208     }
209
210     public String getWhetherToCollect() {
211         return whetherToCollect;
212     }
213
214     public void setWhetherToCollect(String whetherToCollect) {
215         this.whetherToCollect = whetherToCollect;
216     }
217
218     public String getDefaultValue() {
219         return defaultValue;
220     }
221
222     public void setDefaultValue(String defaultValue) {
223         this.defaultValue = defaultValue;
224     }
225
226     public void setId(Long id)
e57a89 227     {
228         this.id = id;
229     }
230
231     public Long getId() 
232     {
233         return id;
234     }
235     public void setProcessesCode(String processesCode) 
236     {
237         this.processesCode = processesCode;
238     }
239
240     public String getProcessesCode() 
241     {
242         return processesCode;
243     }
244     public void setParameterSetCode(String parameterSetCode) 
245     {
246         this.parameterSetCode = parameterSetCode;
247     }
248
249     public String getParameterSetCode() 
250     {
251         return parameterSetCode;
252     }
253     public void setParameterSetName(String parameterSetName) 
254     {
255         this.parameterSetName = parameterSetName;
256     }
257
258     public String getParameterSetName() 
259     {
260         return parameterSetName;
261     }
262     public void setCollectParameterId(String collectParameterId) 
263     {
264         this.collectParameterId = collectParameterId;
265     }
266
267     public String getCollectParameterId() 
268     {
269         return collectParameterId;
270     }
271     public void setCollectParameterName(String collectParameterName) 
272     {
273         this.collectParameterName = collectParameterName;
274     }
275
276     public String getCollectParameterName() 
277     {
278         return collectParameterName;
279     }
280     public void setContrastParameterFlag(String contrastParameterFlag) 
281     {
282         this.contrastParameterFlag = contrastParameterFlag;
283     }
284
285     public String getContrastParameterFlag() 
286     {
287         return contrastParameterFlag;
288     }
289     public void setCollectParameterType(String collectParameterType) 
290     {
291         this.collectParameterType = collectParameterType;
292     }
293
294     public String getCollectParameterType() 
295     {
296         return collectParameterType;
297     }
298     public void setCollectParameterUnit(String collectParameterUnit) 
299     {
300         this.collectParameterUnit = collectParameterUnit;
301     }
302
303     public String getCollectParameterUnit() 
304     {
305         return collectParameterUnit;
306     }
307     public void setDescriptives(String Descriptives) 
308     {
309         this.Descriptives = Descriptives;
310     }
311
312     public String getDescriptives() 
313     {
314         return Descriptives;
315     }
316     public void setParamUpper(String paramUpper) 
317     {
318         this.paramUpper = paramUpper;
319     }
320
321     public String getParamUpper() 
322     {
323         return paramUpper;
324     }
325     public void setParamLower(String paramLower) 
326     {
327         this.paramLower = paramLower;
328     }
329
330     public String getParamLower() 
331     {
332         return paramLower;
333     }
334     public void setParamCentral(String paramCentral) 
335     {
336         this.paramCentral = paramCentral;
337     }
338
339     public String getParamCentral() 
340     {
341         return paramCentral;
342     }
343     public void setProductCode(String productCode) 
344     {
345         this.productCode = productCode;
346     }
347
348     public String getProductCode() 
349     {
350         return productCode;
351     }
352     public void setGatherAddress(String gatherAddress) 
353     {
354         this.gatherAddress = gatherAddress;
355     }
356
357     public String getGatherAddress() 
358     {
359         return gatherAddress;
360     }
361     public void setGatherSequence(String gatherSequence) 
362     {
363         this.gatherSequence = gatherSequence;
364     }
365
366     public String getGatherSequence() 
367     {
368         return gatherSequence;
369     }
370     public void setRemarks(String remarks) 
371     {
372         this.remarks = remarks;
373     }
374
375     public String getRemarks() 
376     {
377         return remarks;
378     }
379     public void setCreateUser(String createUser) 
380     {
381         this.createUser = createUser;
382     }
383
384     public String getCreateUser() 
385     {
386         return createUser;
387     }
388     public void setUpdateUser(String updateUser) 
389     {
390         this.updateUser = updateUser;
391     }
392
393     public String getUpdateUser() 
394     {
395         return updateUser;
396     }
397     public void setSpareField1(String spareField1) 
398     {
399         this.spareField1 = spareField1;
400     }
401
402     public String getSpareField1() 
403     {
404         return spareField1;
405     }
406     public void setSpareField2(String spareField2) 
407     {
408         this.spareField2 = spareField2;
409     }
410
411     public String getSpareField2() 
412     {
413         return spareField2;
414     }
415     public void setSpareField3(String spareField3) 
416     {
417         this.spareField3 = spareField3;
418     }
419
420     public String getSpareField3() 
421     {
422         return spareField3;
423     }
424     public void setSpareField4(String spareField4) 
425     {
426         this.spareField4 = spareField4;
427     }
428
429     public String getSpareField4() 
430     {
431         return spareField4;
432     }
433
434     @Override
435     public String toString() {
436         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
437             .append("id", getId())
438             .append("processesCode", getProcessesCode())
439             .append("parameterSetCode", getParameterSetCode())
440             .append("parameterSetName", getParameterSetName())
441             .append("collectParameterId", getCollectParameterId())
442             .append("collectParameterName", getCollectParameterName())
443             .append("contrastParameterFlag", getContrastParameterFlag())
444             .append("collectParameterType", getCollectParameterType())
445             .append("collectParameterUnit", getCollectParameterUnit())
446             .append("Descriptives", getDescriptives())
447             .append("paramUpper", getParamUpper())
448             .append("paramLower", getParamLower())
449             .append("paramCentral", getParamCentral())
450             .append("productCode", getProductCode())
451             .append("gatherAddress", getGatherAddress())
452             .append("gatherSequence", getGatherSequence())
453             .append("remarks", getRemarks())
454             .append("createUser", getCreateUser())
455             .append("createTime", getCreateTime())
456             .append("updateUser", getUpdateUser())
457             .append("updateTime", getUpdateTime())
458             .append("spareField1", getSpareField1())
459             .append("spareField2", getSpareField2())
460             .append("spareField3", getSpareField3())
461             .append("spareField4", getSpareField4())
462             .toString();
463     }
464 }