提交 | 用户 | 时间
|
fd2207
|
1 |
package com.jcdm.main.da.collectionParamConf.domain; |
懒 |
2 |
|
|
3 |
import org.apache.commons.lang3.builder.ToStringBuilder; |
|
4 |
import org.apache.commons.lang3.builder.ToStringStyle; |
|
5 |
import com.jcdm.common.annotation.Excel; |
|
6 |
import com.jcdm.common.core.domain.BaseEntity; |
|
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 |
|
|
105 |
public void setId(Long id) |
|
106 |
{ |
|
107 |
this.id = id; |
|
108 |
} |
|
109 |
|
|
110 |
public Long getId() |
|
111 |
{ |
|
112 |
return id; |
|
113 |
} |
|
114 |
public void setProcessesCode(String processesCode) |
|
115 |
{ |
|
116 |
this.processesCode = processesCode; |
|
117 |
} |
|
118 |
|
|
119 |
public String getProcessesCode() |
|
120 |
{ |
|
121 |
return processesCode; |
|
122 |
} |
|
123 |
public void setParameterSetCode(String parameterSetCode) |
|
124 |
{ |
|
125 |
this.parameterSetCode = parameterSetCode; |
|
126 |
} |
|
127 |
|
|
128 |
public String getParameterSetCode() |
|
129 |
{ |
|
130 |
return parameterSetCode; |
|
131 |
} |
|
132 |
public void setParameterSetName(String parameterSetName) |
|
133 |
{ |
|
134 |
this.parameterSetName = parameterSetName; |
|
135 |
} |
|
136 |
|
|
137 |
public String getParameterSetName() |
|
138 |
{ |
|
139 |
return parameterSetName; |
|
140 |
} |
|
141 |
public void setCollectParameterId(String collectParameterId) |
|
142 |
{ |
|
143 |
this.collectParameterId = collectParameterId; |
|
144 |
} |
|
145 |
|
|
146 |
public String getCollectParameterId() |
|
147 |
{ |
|
148 |
return collectParameterId; |
|
149 |
} |
|
150 |
public void setCollectParameterName(String collectParameterName) |
|
151 |
{ |
|
152 |
this.collectParameterName = collectParameterName; |
|
153 |
} |
|
154 |
|
|
155 |
public String getCollectParameterName() |
|
156 |
{ |
|
157 |
return collectParameterName; |
|
158 |
} |
|
159 |
public void setContrastParameterFlag(String contrastParameterFlag) |
|
160 |
{ |
|
161 |
this.contrastParameterFlag = contrastParameterFlag; |
|
162 |
} |
|
163 |
|
|
164 |
public String getContrastParameterFlag() |
|
165 |
{ |
|
166 |
return contrastParameterFlag; |
|
167 |
} |
|
168 |
public void setCollectParameterType(String collectParameterType) |
|
169 |
{ |
|
170 |
this.collectParameterType = collectParameterType; |
|
171 |
} |
|
172 |
|
|
173 |
public String getCollectParameterType() |
|
174 |
{ |
|
175 |
return collectParameterType; |
|
176 |
} |
|
177 |
public void setCollectParameterUnit(String collectParameterUnit) |
|
178 |
{ |
|
179 |
this.collectParameterUnit = collectParameterUnit; |
|
180 |
} |
|
181 |
|
|
182 |
public String getCollectParameterUnit() |
|
183 |
{ |
|
184 |
return collectParameterUnit; |
|
185 |
} |
|
186 |
public void setDescriptives(String Descriptives) |
|
187 |
{ |
|
188 |
this.Descriptives = Descriptives; |
|
189 |
} |
|
190 |
|
|
191 |
public String getDescriptives() |
|
192 |
{ |
|
193 |
return Descriptives; |
|
194 |
} |
|
195 |
public void setParamUpper(String paramUpper) |
|
196 |
{ |
|
197 |
this.paramUpper = paramUpper; |
|
198 |
} |
|
199 |
|
|
200 |
public String getParamUpper() |
|
201 |
{ |
|
202 |
return paramUpper; |
|
203 |
} |
|
204 |
public void setParamLower(String paramLower) |
|
205 |
{ |
|
206 |
this.paramLower = paramLower; |
|
207 |
} |
|
208 |
|
|
209 |
public String getParamLower() |
|
210 |
{ |
|
211 |
return paramLower; |
|
212 |
} |
|
213 |
public void setParamCentral(String paramCentral) |
|
214 |
{ |
|
215 |
this.paramCentral = paramCentral; |
|
216 |
} |
|
217 |
|
|
218 |
public String getParamCentral() |
|
219 |
{ |
|
220 |
return paramCentral; |
|
221 |
} |
|
222 |
public void setProductCode(String productCode) |
|
223 |
{ |
|
224 |
this.productCode = productCode; |
|
225 |
} |
|
226 |
|
|
227 |
public String getProductCode() |
|
228 |
{ |
|
229 |
return productCode; |
|
230 |
} |
|
231 |
public void setGatherAddress(String gatherAddress) |
|
232 |
{ |
|
233 |
this.gatherAddress = gatherAddress; |
|
234 |
} |
|
235 |
|
|
236 |
public String getGatherAddress() |
|
237 |
{ |
|
238 |
return gatherAddress; |
|
239 |
} |
|
240 |
public void setGatherSequence(String gatherSequence) |
|
241 |
{ |
|
242 |
this.gatherSequence = gatherSequence; |
|
243 |
} |
|
244 |
|
|
245 |
public String getGatherSequence() |
|
246 |
{ |
|
247 |
return gatherSequence; |
|
248 |
} |
|
249 |
public void setRemarks(String remarks) |
|
250 |
{ |
|
251 |
this.remarks = remarks; |
|
252 |
} |
|
253 |
|
|
254 |
public String getRemarks() |
|
255 |
{ |
|
256 |
return remarks; |
|
257 |
} |
|
258 |
public void setCreateUser(String createUser) |
|
259 |
{ |
|
260 |
this.createUser = createUser; |
|
261 |
} |
|
262 |
|
|
263 |
public String getCreateUser() |
|
264 |
{ |
|
265 |
return createUser; |
|
266 |
} |
|
267 |
public void setUpdateUser(String updateUser) |
|
268 |
{ |
|
269 |
this.updateUser = updateUser; |
|
270 |
} |
|
271 |
|
|
272 |
public String getUpdateUser() |
|
273 |
{ |
|
274 |
return updateUser; |
|
275 |
} |
|
276 |
public void setSpareField1(String spareField1) |
|
277 |
{ |
|
278 |
this.spareField1 = spareField1; |
|
279 |
} |
|
280 |
|
|
281 |
public String getSpareField1() |
|
282 |
{ |
|
283 |
return spareField1; |
|
284 |
} |
|
285 |
public void setSpareField2(String spareField2) |
|
286 |
{ |
|
287 |
this.spareField2 = spareField2; |
|
288 |
} |
|
289 |
|
|
290 |
public String getSpareField2() |
|
291 |
{ |
|
292 |
return spareField2; |
|
293 |
} |
|
294 |
public void setSpareField3(String spareField3) |
|
295 |
{ |
|
296 |
this.spareField3 = spareField3; |
|
297 |
} |
|
298 |
|
|
299 |
public String getSpareField3() |
|
300 |
{ |
|
301 |
return spareField3; |
|
302 |
} |
|
303 |
public void setSpareField4(String spareField4) |
|
304 |
{ |
|
305 |
this.spareField4 = spareField4; |
|
306 |
} |
|
307 |
|
|
308 |
public String getSpareField4() |
|
309 |
{ |
|
310 |
return spareField4; |
|
311 |
} |
|
312 |
|
|
313 |
@Override |
|
314 |
public String toString() { |
|
315 |
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
316 |
.append("id", getId()) |
|
317 |
.append("processesCode", getProcessesCode()) |
|
318 |
.append("parameterSetCode", getParameterSetCode()) |
|
319 |
.append("parameterSetName", getParameterSetName()) |
|
320 |
.append("collectParameterId", getCollectParameterId()) |
|
321 |
.append("collectParameterName", getCollectParameterName()) |
|
322 |
.append("contrastParameterFlag", getContrastParameterFlag()) |
|
323 |
.append("collectParameterType", getCollectParameterType()) |
|
324 |
.append("collectParameterUnit", getCollectParameterUnit()) |
|
325 |
.append("Descriptives", getDescriptives()) |
|
326 |
.append("paramUpper", getParamUpper()) |
|
327 |
.append("paramLower", getParamLower()) |
|
328 |
.append("paramCentral", getParamCentral()) |
|
329 |
.append("productCode", getProductCode()) |
|
330 |
.append("gatherAddress", getGatherAddress()) |
|
331 |
.append("gatherSequence", getGatherSequence()) |
|
332 |
.append("remarks", getRemarks()) |
|
333 |
.append("createUser", getCreateUser()) |
|
334 |
.append("createTime", getCreateTime()) |
|
335 |
.append("updateUser", getUpdateUser()) |
|
336 |
.append("updateTime", getUpdateTime()) |
|
337 |
.append("spareField1", getSpareField1()) |
|
338 |
.append("spareField2", getSpareField2()) |
|
339 |
.append("spareField3", getSpareField3()) |
|
340 |
.append("spareField4", getSpareField4()) |
|
341 |
.toString(); |
|
342 |
} |
|
343 |
} |