yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package com.qianwen.smartman.modules.cps.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
 
@TableName("blade_dmp_variables")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/entity/DmpVariables.class */
public class DmpVariables implements Serializable {
    private static final long serialVersionUID = -5852439219495925331L;
    private Long id;
    private String dmpDeviceId;
    private Long machineId;
    private Integer dmpType;
    private String name;
    private String description;
    private String deviceAddress;
    private Integer dmpAccess;
    private Integer dataLength;
    private Double valueFactor;
    private Integer dataType;
    private String methodParam;
    private Integer idx;
    private String defaultValue;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setDmpDeviceId(final String dmpDeviceId) {
        this.dmpDeviceId = dmpDeviceId;
    }
 
    public void setMachineId(final Long machineId) {
        this.machineId = machineId;
    }
 
    public void setDmpType(final Integer dmpType) {
        this.dmpType = dmpType;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setDescription(final String description) {
        this.description = description;
    }
 
    public void setDeviceAddress(final String deviceAddress) {
        this.deviceAddress = deviceAddress;
    }
 
    public void setDmpAccess(final Integer dmpAccess) {
        this.dmpAccess = dmpAccess;
    }
 
    public void setDataLength(final Integer dataLength) {
        this.dataLength = dataLength;
    }
 
    public void setValueFactor(final Double valueFactor) {
        this.valueFactor = valueFactor;
    }
 
    public void setDataType(final Integer dataType) {
        this.dataType = dataType;
    }
 
    public void setMethodParam(final String methodParam) {
        this.methodParam = methodParam;
    }
 
    public void setIdx(final Integer idx) {
        this.idx = idx;
    }
 
    public void setDefaultValue(final String defaultValue) {
        this.defaultValue = defaultValue;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DmpVariables) {
            DmpVariables other = (DmpVariables) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$machineId = getMachineId();
                Object other$machineId = other.getMachineId();
                if (this$machineId == null) {
                    if (other$machineId != null) {
                        return false;
                    }
                } else if (!this$machineId.equals(other$machineId)) {
                    return false;
                }
                Object this$dmpType = getDmpType();
                Object other$dmpType = other.getDmpType();
                if (this$dmpType == null) {
                    if (other$dmpType != null) {
                        return false;
                    }
                } else if (!this$dmpType.equals(other$dmpType)) {
                    return false;
                }
                Object this$dmpAccess = getDmpAccess();
                Object other$dmpAccess = other.getDmpAccess();
                if (this$dmpAccess == null) {
                    if (other$dmpAccess != null) {
                        return false;
                    }
                } else if (!this$dmpAccess.equals(other$dmpAccess)) {
                    return false;
                }
                Object this$dataLength = getDataLength();
                Object other$dataLength = other.getDataLength();
                if (this$dataLength == null) {
                    if (other$dataLength != null) {
                        return false;
                    }
                } else if (!this$dataLength.equals(other$dataLength)) {
                    return false;
                }
                Object this$valueFactor = getValueFactor();
                Object other$valueFactor = other.getValueFactor();
                if (this$valueFactor == null) {
                    if (other$valueFactor != null) {
                        return false;
                    }
                } else if (!this$valueFactor.equals(other$valueFactor)) {
                    return false;
                }
                Object this$dataType = getDataType();
                Object other$dataType = other.getDataType();
                if (this$dataType == null) {
                    if (other$dataType != null) {
                        return false;
                    }
                } else if (!this$dataType.equals(other$dataType)) {
                    return false;
                }
                Object this$idx = getIdx();
                Object other$idx = other.getIdx();
                if (this$idx == null) {
                    if (other$idx != null) {
                        return false;
                    }
                } else if (!this$idx.equals(other$idx)) {
                    return false;
                }
                Object this$dmpDeviceId = getDmpDeviceId();
                Object other$dmpDeviceId = other.getDmpDeviceId();
                if (this$dmpDeviceId == null) {
                    if (other$dmpDeviceId != null) {
                        return false;
                    }
                } else if (!this$dmpDeviceId.equals(other$dmpDeviceId)) {
                    return false;
                }
                Object this$name = getName();
                Object other$name = other.getName();
                if (this$name == null) {
                    if (other$name != null) {
                        return false;
                    }
                } else if (!this$name.equals(other$name)) {
                    return false;
                }
                Object this$description = getDescription();
                Object other$description = other.getDescription();
                if (this$description == null) {
                    if (other$description != null) {
                        return false;
                    }
                } else if (!this$description.equals(other$description)) {
                    return false;
                }
                Object this$deviceAddress = getDeviceAddress();
                Object other$deviceAddress = other.getDeviceAddress();
                if (this$deviceAddress == null) {
                    if (other$deviceAddress != null) {
                        return false;
                    }
                } else if (!this$deviceAddress.equals(other$deviceAddress)) {
                    return false;
                }
                Object this$methodParam = getMethodParam();
                Object other$methodParam = other.getMethodParam();
                if (this$methodParam == null) {
                    if (other$methodParam != null) {
                        return false;
                    }
                } else if (!this$methodParam.equals(other$methodParam)) {
                    return false;
                }
                Object this$defaultValue = getDefaultValue();
                Object other$defaultValue = other.getDefaultValue();
                return this$defaultValue == null ? other$defaultValue == null : this$defaultValue.equals(other$defaultValue);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DmpVariables;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $machineId = getMachineId();
        int result2 = (result * 59) + ($machineId == null ? 43 : $machineId.hashCode());
        Object $dmpType = getDmpType();
        int result3 = (result2 * 59) + ($dmpType == null ? 43 : $dmpType.hashCode());
        Object $dmpAccess = getDmpAccess();
        int result4 = (result3 * 59) + ($dmpAccess == null ? 43 : $dmpAccess.hashCode());
        Object $dataLength = getDataLength();
        int result5 = (result4 * 59) + ($dataLength == null ? 43 : $dataLength.hashCode());
        Object $valueFactor = getValueFactor();
        int result6 = (result5 * 59) + ($valueFactor == null ? 43 : $valueFactor.hashCode());
        Object $dataType = getDataType();
        int result7 = (result6 * 59) + ($dataType == null ? 43 : $dataType.hashCode());
        Object $idx = getIdx();
        int result8 = (result7 * 59) + ($idx == null ? 43 : $idx.hashCode());
        Object $dmpDeviceId = getDmpDeviceId();
        int result9 = (result8 * 59) + ($dmpDeviceId == null ? 43 : $dmpDeviceId.hashCode());
        Object $name = getName();
        int result10 = (result9 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $description = getDescription();
        int result11 = (result10 * 59) + ($description == null ? 43 : $description.hashCode());
        Object $deviceAddress = getDeviceAddress();
        int result12 = (result11 * 59) + ($deviceAddress == null ? 43 : $deviceAddress.hashCode());
        Object $methodParam = getMethodParam();
        int result13 = (result12 * 59) + ($methodParam == null ? 43 : $methodParam.hashCode());
        Object $defaultValue = getDefaultValue();
        return (result13 * 59) + ($defaultValue == null ? 43 : $defaultValue.hashCode());
    }
 
    public String toString() {
        return "DmpVariables(id=" + getId() + ", dmpDeviceId=" + getDmpDeviceId() + ", machineId=" + getMachineId() + ", dmpType=" + getDmpType() + ", name=" + getName() + ", description=" + getDescription() + ", deviceAddress=" + getDeviceAddress() + ", dmpAccess=" + getDmpAccess() + ", dataLength=" + getDataLength() + ", valueFactor=" + getValueFactor() + ", dataType=" + getDataType() + ", methodParam=" + getMethodParam() + ", idx=" + getIdx() + ", defaultValue=" + getDefaultValue() + ")";
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/entity/DmpVariables$DmpVariablesBuilder.class */
    public static class DmpVariablesBuilder {
        private Long id;
        private String dmpDeviceId;
        private Long machineId;
        private Integer dmpType;
        private String name;
        private String description;
        private String deviceAddress;
        private Integer dmpAccess;
        private Integer dataLength;
        private Double valueFactor;
        private Integer dataType;
        private String methodParam;
        private Integer idx;
        private String defaultValue;
 
        DmpVariablesBuilder() {
        }
 
        public DmpVariablesBuilder id(final Long id) {
            this.id = id;
            return this;
        }
 
        public DmpVariablesBuilder dmpDeviceId(final String dmpDeviceId) {
            this.dmpDeviceId = dmpDeviceId;
            return this;
        }
 
        public DmpVariablesBuilder machineId(final Long machineId) {
            this.machineId = machineId;
            return this;
        }
 
        public DmpVariablesBuilder dmpType(final Integer dmpType) {
            this.dmpType = dmpType;
            return this;
        }
 
        public DmpVariablesBuilder name(final String name) {
            this.name = name;
            return this;
        }
 
        public DmpVariablesBuilder description(final String description) {
            this.description = description;
            return this;
        }
 
        public DmpVariablesBuilder deviceAddress(final String deviceAddress) {
            this.deviceAddress = deviceAddress;
            return this;
        }
 
        public DmpVariablesBuilder dmpAccess(final Integer dmpAccess) {
            this.dmpAccess = dmpAccess;
            return this;
        }
 
        public DmpVariablesBuilder dataLength(final Integer dataLength) {
            this.dataLength = dataLength;
            return this;
        }
 
        public DmpVariablesBuilder valueFactor(final Double valueFactor) {
            this.valueFactor = valueFactor;
            return this;
        }
 
        public DmpVariablesBuilder dataType(final Integer dataType) {
            this.dataType = dataType;
            return this;
        }
 
        public DmpVariablesBuilder methodParam(final String methodParam) {
            this.methodParam = methodParam;
            return this;
        }
 
        public DmpVariablesBuilder idx(final Integer idx) {
            this.idx = idx;
            return this;
        }
 
        public DmpVariablesBuilder defaultValue(final String defaultValue) {
            this.defaultValue = defaultValue;
            return this;
        }
 
        public DmpVariables build() {
            return new DmpVariables(this.id, this.dmpDeviceId, this.machineId, this.dmpType, this.name, this.description, this.deviceAddress, this.dmpAccess, this.dataLength, this.valueFactor, this.dataType, this.methodParam, this.idx, this.defaultValue);
        }
 
        public String toString() {
            return "DmpVariables.DmpVariablesBuilder(id=" + this.id + ", dmpDeviceId=" + this.dmpDeviceId + ", machineId=" + this.machineId + ", dmpType=" + this.dmpType + ", name=" + this.name + ", description=" + this.description + ", deviceAddress=" + this.deviceAddress + ", dmpAccess=" + this.dmpAccess + ", dataLength=" + this.dataLength + ", valueFactor=" + this.valueFactor + ", dataType=" + this.dataType + ", methodParam=" + this.methodParam + ", idx=" + this.idx + ", defaultValue=" + this.defaultValue + ")";
        }
    }
 
    public static DmpVariablesBuilder builder() {
        return new DmpVariablesBuilder();
    }
 
    public DmpVariables(final Long id, final String dmpDeviceId, final Long machineId, final Integer dmpType, final String name, final String description, final String deviceAddress, final Integer dmpAccess, final Integer dataLength, final Double valueFactor, final Integer dataType, final String methodParam, final Integer idx, final String defaultValue) {
        this.id = id;
        this.dmpDeviceId = dmpDeviceId;
        this.machineId = machineId;
        this.dmpType = dmpType;
        this.name = name;
        this.description = description;
        this.deviceAddress = deviceAddress;
        this.dmpAccess = dmpAccess;
        this.dataLength = dataLength;
        this.valueFactor = valueFactor;
        this.dataType = dataType;
        this.methodParam = methodParam;
        this.idx = idx;
        this.defaultValue = defaultValue;
    }
 
    public DmpVariables() {
    }
 
    public Long getId() {
        return this.id;
    }
 
    public String getDmpDeviceId() {
        return this.dmpDeviceId;
    }
 
    public Long getMachineId() {
        return this.machineId;
    }
 
    public Integer getDmpType() {
        return this.dmpType;
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getDescription() {
        return this.description;
    }
 
    public String getDeviceAddress() {
        return this.deviceAddress;
    }
 
    public Integer getDmpAccess() {
        return this.dmpAccess;
    }
 
    public Integer getDataLength() {
        return this.dataLength;
    }
 
    public Double getValueFactor() {
        return this.valueFactor;
    }
 
    public Integer getDataType() {
        return this.dataType;
    }
 
    public String getMethodParam() {
        return this.methodParam;
    }
 
    public Integer getIdx() {
        return this.idx;
    }
 
    public String getDefaultValue() {
        return this.defaultValue;
    }
}