懒羊羊
2024-03-11 679fb5553807993969169e4b1caba304815ebad7
提交 | 用户 | 时间
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
141     public String getProcessesName() {
142         return processesName;
143     }
144
145     public void setProcessesName(String processesName) {
146         this.processesName = processesName;
147     }
148
149     public String getDevice() {
150         return device;
151     }
152
153     public void setDevice(String device) {
154         this.device = device;
155     }
156
157     public String getProject() {
158         return project;
159     }
160
161     public void setProject(String project) {
162         this.project = project;
163     }
164
165     public Long getAccuracy() {
166         return accuracy;
167     }
168
169     public void setAccuracy(Long accuracy) {
170         this.accuracy = accuracy;
171     }
172
173     public Long getArrayLength() {
174         return arrayLength;
175     }
176
177     public void setArrayLength(Long arrayLength) {
178         this.arrayLength = arrayLength;
179     }
180
181     public String getAcquisitionFrequency() {
182         return acquisitionFrequency;
183     }
184
185     public void setAcquisitionFrequency(String acquisitionFrequency) {
186         this.acquisitionFrequency = acquisitionFrequency;
187     }
188
189     public String getDemandDepartment() {
190         return demandDepartment;
191     }
192
193     public void setDemandDepartment(String demandDepartment) {
194         this.demandDepartment = demandDepartment;
195     }
196
197     public String getWhetherToCollect() {
198         return whetherToCollect;
199     }
200
201     public void setWhetherToCollect(String whetherToCollect) {
202         this.whetherToCollect = whetherToCollect;
203     }
204
205     public String getDefaultValue() {
206         return defaultValue;
207     }
208
209     public void setDefaultValue(String defaultValue) {
210         this.defaultValue = defaultValue;
211     }
212
213     public void setId(Long id)
e57a89 214     {
215         this.id = id;
216     }
217
218     public Long getId() 
219     {
220         return id;
221     }
222     public void setProcessesCode(String processesCode) 
223     {
224         this.processesCode = processesCode;
225     }
226
227     public String getProcessesCode() 
228     {
229         return processesCode;
230     }
231     public void setParameterSetCode(String parameterSetCode) 
232     {
233         this.parameterSetCode = parameterSetCode;
234     }
235
236     public String getParameterSetCode() 
237     {
238         return parameterSetCode;
239     }
240     public void setParameterSetName(String parameterSetName) 
241     {
242         this.parameterSetName = parameterSetName;
243     }
244
245     public String getParameterSetName() 
246     {
247         return parameterSetName;
248     }
249     public void setCollectParameterId(String collectParameterId) 
250     {
251         this.collectParameterId = collectParameterId;
252     }
253
254     public String getCollectParameterId() 
255     {
256         return collectParameterId;
257     }
258     public void setCollectParameterName(String collectParameterName) 
259     {
260         this.collectParameterName = collectParameterName;
261     }
262
263     public String getCollectParameterName() 
264     {
265         return collectParameterName;
266     }
267     public void setContrastParameterFlag(String contrastParameterFlag) 
268     {
269         this.contrastParameterFlag = contrastParameterFlag;
270     }
271
272     public String getContrastParameterFlag() 
273     {
274         return contrastParameterFlag;
275     }
276     public void setCollectParameterType(String collectParameterType) 
277     {
278         this.collectParameterType = collectParameterType;
279     }
280
281     public String getCollectParameterType() 
282     {
283         return collectParameterType;
284     }
285     public void setCollectParameterUnit(String collectParameterUnit) 
286     {
287         this.collectParameterUnit = collectParameterUnit;
288     }
289
290     public String getCollectParameterUnit() 
291     {
292         return collectParameterUnit;
293     }
294     public void setDescriptives(String Descriptives) 
295     {
296         this.Descriptives = Descriptives;
297     }
298
299     public String getDescriptives() 
300     {
301         return Descriptives;
302     }
303     public void setParamUpper(String paramUpper) 
304     {
305         this.paramUpper = paramUpper;
306     }
307
308     public String getParamUpper() 
309     {
310         return paramUpper;
311     }
312     public void setParamLower(String paramLower) 
313     {
314         this.paramLower = paramLower;
315     }
316
317     public String getParamLower() 
318     {
319         return paramLower;
320     }
321     public void setParamCentral(String paramCentral) 
322     {
323         this.paramCentral = paramCentral;
324     }
325
326     public String getParamCentral() 
327     {
328         return paramCentral;
329     }
330     public void setProductCode(String productCode) 
331     {
332         this.productCode = productCode;
333     }
334
335     public String getProductCode() 
336     {
337         return productCode;
338     }
339     public void setGatherAddress(String gatherAddress) 
340     {
341         this.gatherAddress = gatherAddress;
342     }
343
344     public String getGatherAddress() 
345     {
346         return gatherAddress;
347     }
348     public void setGatherSequence(String gatherSequence) 
349     {
350         this.gatherSequence = gatherSequence;
351     }
352
353     public String getGatherSequence() 
354     {
355         return gatherSequence;
356     }
357     public void setRemarks(String remarks) 
358     {
359         this.remarks = remarks;
360     }
361
362     public String getRemarks() 
363     {
364         return remarks;
365     }
366     public void setCreateUser(String createUser) 
367     {
368         this.createUser = createUser;
369     }
370
371     public String getCreateUser() 
372     {
373         return createUser;
374     }
375     public void setUpdateUser(String updateUser) 
376     {
377         this.updateUser = updateUser;
378     }
379
380     public String getUpdateUser() 
381     {
382         return updateUser;
383     }
384     public void setSpareField1(String spareField1) 
385     {
386         this.spareField1 = spareField1;
387     }
388
389     public String getSpareField1() 
390     {
391         return spareField1;
392     }
393     public void setSpareField2(String spareField2) 
394     {
395         this.spareField2 = spareField2;
396     }
397
398     public String getSpareField2() 
399     {
400         return spareField2;
401     }
402     public void setSpareField3(String spareField3) 
403     {
404         this.spareField3 = spareField3;
405     }
406
407     public String getSpareField3() 
408     {
409         return spareField3;
410     }
411     public void setSpareField4(String spareField4) 
412     {
413         this.spareField4 = spareField4;
414     }
415
416     public String getSpareField4() 
417     {
418         return spareField4;
419     }
420
421     @Override
422     public String toString() {
423         return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
424             .append("id", getId())
425             .append("processesCode", getProcessesCode())
426             .append("parameterSetCode", getParameterSetCode())
427             .append("parameterSetName", getParameterSetName())
428             .append("collectParameterId", getCollectParameterId())
429             .append("collectParameterName", getCollectParameterName())
430             .append("contrastParameterFlag", getContrastParameterFlag())
431             .append("collectParameterType", getCollectParameterType())
432             .append("collectParameterUnit", getCollectParameterUnit())
433             .append("Descriptives", getDescriptives())
434             .append("paramUpper", getParamUpper())
435             .append("paramLower", getParamLower())
436             .append("paramCentral", getParamCentral())
437             .append("productCode", getProductCode())
438             .append("gatherAddress", getGatherAddress())
439             .append("gatherSequence", getGatherSequence())
440             .append("remarks", getRemarks())
441             .append("createUser", getCreateUser())
442             .append("createTime", getCreateTime())
443             .append("updateUser", getUpdateUser())
444             .append("updateTime", getUpdateTime())
445             .append("spareField1", getSpareField1())
446             .append("spareField2", getSpareField2())
447             .append("spareField3", getSpareField3())
448             .append("spareField4", getSpareField4())
449             .toString();
450     }
451 }