cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.collectionParamConf.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import com.baomidou.mybatisplus.annotation.IdType;
5 import java.util.Date;
6 import com.baomidou.mybatisplus.annotation.TableId;
7 import com.baomidou.mybatisplus.annotation.FieldFill;
8 import com.baomidou.mybatisplus.annotation.TableField;
9 import java.io.Serializable;
10
11 /**
12  * <p>
13  * 采集参数配置
14  * </p>
15  *
16  * @author zrm
17  * @since 2023-02-11
18  */
19 @TableName("bs_collection_param_conf")
20 public class CollectionParamConf implements Serializable {
21
22     private static final long serialVersionUID=1L;
23
24     /**
25      * 主键id
26      */
27       @TableId(value = "id", type = IdType.ID_WORKER)
28     private Long id;
29
30     /**
31      * 参数编码
32      */
33     @TableField("param_code")
34     private String paramCode;
35
36     /**
37      * 参数编码
38      */
39     @TableField("param_name")
40     private String paramName;
41
42     /**
43      * 产线编号
44      */
45     @TableField("production_line")
46     private String productionLine;
47
48     /**
49      * 工位编号
50      */
51     @TableField("location_code")
52     private String locationCode;
53
54     /**
55      * 设备编号
56      */
57     @TableField("equipment_no")
58     private String equipmentNo;
59
60     /**
61      * 产品编码
62      */
63     @TableField("product_code")
64     private String productCode;
65
66     /**
67      * 采集地址
68      */
69     @TableField("gather_address")
70     private String gatherAddress;
71
72     /**
73      * 采集顺序
74      */
75     @TableField("gather_sequence")
76     private String gatherSequence;
77
78     /**
79      * 数据类型
80      */
81     @TableField("data_type")
82     private String dataType;
83
84     /**
85      * 单位
86      */
87     @TableField("unit")
88     private String unit;
89
90     /**
91      * 上限值
92      */
93     @TableField("param_upper")
94     private String paramUpper;
95
96     /**
97      * 下限值
98      */
99     @TableField("param_lower")
100     private String paramLower;
101
102     /**
103      * 中心值
104      */
105     @TableField("param_Central")
106     private String paramCentral;
107
108     /**
109      * 预留字段1
110      */
111     @TableField("spare_field_1")
112     private String spareField1;
113
114     /**
115      * 预留字段2
116      */
117     @TableField("spare_field_2")
118     private String spareField2;
119
120     /**
121      * 备注
122      */
123     @TableField("remarks")
124     private String remarks;
125
126     /**
127      * 创建用户
128      */
129       @TableField(value = "create_user", fill = FieldFill.INSERT)
130     private String createUser;
131
132     /**
133      * 创建时间
134      */
135       @TableField(value = "create_time", fill = FieldFill.INSERT)
136     private Date createTime;
137
138     /**
139      * 更改用户
140      */
141       @TableField(value = "update_user", fill = FieldFill.UPDATE)
142     private String updateUser;
143
144     /**
145      * 更改时间
146      */
147       @TableField(value = "update_time", fill = FieldFill.UPDATE)
148     private Date updateTime;
149
150     public String getParamName() {
151         return paramName;
152     }
153
154     public void setParamName(String paramName) {
155         this.paramName = paramName;
156     }
157
158     public Long getId() {
159         return id;
160     }
161
162     public void setId(Long id) {
163         this.id = id;
164     }
165
166     public String getParamCode() {
167         return paramCode;
168     }
169
170     public void setParamCode(String paramCode) {
171         this.paramCode = paramCode;
172     }
173
174     public String getProductionLine() {
175         return productionLine;
176     }
177
178     public void setProductionLine(String productionLine) {
179         this.productionLine = productionLine;
180     }
181
182     public String getLocationCode() {
183         return locationCode;
184     }
185
186     public void setLocationCode(String locationCode) {
187         this.locationCode = locationCode;
188     }
189
190     public String getEquipmentNo() {
191         return equipmentNo;
192     }
193
194     public void setEquipmentNo(String equipmentNo) {
195         this.equipmentNo = equipmentNo;
196     }
197
198     public String getDataType() {
199         return dataType;
200     }
201
202     public void setDataType(String dataType) {
203         this.dataType = dataType;
204     }
205
206     public String getUnit() {
207         return unit;
208     }
209
210     public void setUnit(String unit) {
211         this.unit = unit;
212     }
213
214     public String getParamUpper() {
215         return paramUpper;
216     }
217
218     public void setParamUpper(String paramUpper) {
219         this.paramUpper = paramUpper;
220     }
221
222     public String getParamLower() {
223         return paramLower;
224     }
225
226     public void setParamLower(String paramLower) {
227         this.paramLower = paramLower;
228     }
229
230     public String getParamCentral() {
231         return paramCentral;
232     }
233
234     public void setParamCentral(String paramCentral) {
235         this.paramCentral = paramCentral;
236     }
237
238     public String getSpareField1() {
239         return spareField1;
240     }
241
242     public void setSpareField1(String spareField1) {
243         this.spareField1 = spareField1;
244     }
245
246     public String getSpareField2() {
247         return spareField2;
248     }
249
250     public void setSpareField2(String spareField2) {
251         this.spareField2 = spareField2;
252     }
253
254     public String getRemarks() {
255         return remarks;
256     }
257
258     public void setRemarks(String remarks) {
259         this.remarks = remarks;
260     }
261
262     public String getCreateUser() {
263         return createUser;
264     }
265
266     public void setCreateUser(String createUser) {
267         this.createUser = createUser;
268     }
269
270     public Date getCreateTime() {
271         return createTime;
272     }
273
274     public void setCreateTime(Date createTime) {
275         this.createTime = createTime;
276     }
277
278     public String getUpdateUser() {
279         return updateUser;
280     }
281
282     public void setUpdateUser(String updateUser) {
283         this.updateUser = updateUser;
284     }
285
286     public Date getUpdateTime() {
287         return updateTime;
288     }
289
290     public void setUpdateTime(Date updateTime) {
291         this.updateTime = updateTime;
292     }
293
294     public String getProductCode() {
295         return productCode;
296     }
297
298     public void setProductCode(String productCode) {
299         this.productCode = productCode;
300     }
301
302     public String getGatherAddress() {
303         return gatherAddress;
304     }
305
306     public void setGatherAddress(String gatherAddress) {
307         this.gatherAddress = gatherAddress;
308     }
309
310     public String getGatherSequence() {
311         return gatherSequence;
312     }
313
314     public void setGatherSequence(String gatherSequence) {
315         this.gatherSequence = gatherSequence;
316     }
317
318     @Override
319     public String toString() {
320         return "CollectionParamConf{" +
321         "id=" + id +
322         ", paramCode=" + paramCode +
323         ", productionLine=" + productionLine +
324         ", locationCode=" + locationCode +
325         ", equipmentNo=" + equipmentNo +
326         ", dataType=" + dataType +
327         ", unit=" + unit +
328         ", paramUpper=" + paramUpper +
329         ", paramLower=" + paramLower +
330         ", paramCentral=" + paramCentral +
331         ", spareField1=" + spareField1 +
332         ", spareField2=" + spareField2 +
333         ", remarks=" + remarks +
334         ", createUser=" + createUser +
335         ", createTime=" + createTime +
336         ", updateUser=" + updateUser +
337         ", updateTime=" + updateTime +
338         "}";
339     }
340 }