yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
package com.qianwen.smartman.modules.dnc.vo;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
 
@HeadRowHeight(20)
@ColumnWidth(25)
@ContentRowHeight(18)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncLogExcelVO.class */
public class DncLogExcelVO {
    @ColumnWidth(25)
    @ExcelProperty({"文件名称"})
    @ApiModelProperty("文件名称")
    private String fileName;
    @ColumnWidth(25)
    @ExcelProperty({"版本"})
    @ApiModelProperty("版本")
    private String version;
    @ColumnWidth(25)
    @ExcelProperty({"文件类型"})
    @ApiModelProperty("文件类型")
    private String suffix;
    @ColumnWidth(15)
    @ExcelProperty({"文件来源"})
    @ApiModelProperty("源类型:本地文件 0、我的文档 1、工位文件 2、工厂文件 3、机床回传4 ")
    private String sourceTypeDesc;
    @ExcelIgnore
    @ApiModelProperty("操作类型:上传1 下载2 删除3 更新4 5移动 6复制")
    private Integer operationType;
    @ColumnWidth(15)
    @ExcelProperty({"操作类型"})
    @ApiModelProperty("操作类型说明:上传1 下载2 删除3 更新4 5移动 6复制")
    private String operationTypeDesc;
    @ColumnWidth(40)
    @ExcelProperty({"源路径"})
    @ApiModelProperty("源全路径名称")
    private String sourcePathName;
    @ColumnWidth(40)
    @ExcelProperty({"目标路径"})
    @ApiModelProperty("目标全路径名称:格式,/我的文档/文件夹1/文件夹2")
    private String targetPathName;
    @ExcelIgnore
    @ApiModelProperty("存储空间:1 常规空间  2 固定空间")
    private Integer storageSpace;
    @ColumnWidth(40)
    @ExcelProperty({"储存空间"})
    @ApiModelProperty("储存空间:1 常规空间  2 固定空间")
    private String storageSpaceDec;
    @ExcelIgnore
    @ApiModelProperty("文件位置:1 内部存储 2 以太网")
    private Integer fileLocation;
    @ColumnWidth(40)
    @ExcelProperty({"文件位置"})
    @ApiModelProperty("文件位置:1 内部存储 2 以太网")
    private String fileLocationDesc;
    @ColumnWidth(15)
    @ExcelProperty({"操作人"})
    @ApiModelProperty("操作人")
    private String operatorName;
    @ColumnWidth(30)
    @ExcelProperty({"操作时间"})
    @ApiModelProperty("操作时间")
    private Date operationTime;
    @ExcelIgnore
    @ApiModelProperty("源类型:本地文件 0、我的文档 1、工位文件 2、工厂文件 3、机床回传4 、工艺包 5")
    private Integer sourceType;
 
    public DncLogExcelVO setFileName(final String fileName) {
        this.fileName = fileName;
        return this;
    }
 
    public DncLogExcelVO setVersion(final String version) {
        this.version = version;
        return this;
    }
 
    public DncLogExcelVO setSuffix(final String suffix) {
        this.suffix = suffix;
        return this;
    }
 
    public DncLogExcelVO setSourceTypeDesc(final String sourceTypeDesc) {
        this.sourceTypeDesc = sourceTypeDesc;
        return this;
    }
 
    public DncLogExcelVO setOperationType(final Integer operationType) {
        this.operationType = operationType;
        return this;
    }
 
    public DncLogExcelVO setOperationTypeDesc(final String operationTypeDesc) {
        this.operationTypeDesc = operationTypeDesc;
        return this;
    }
 
    public DncLogExcelVO setSourcePathName(final String sourcePathName) {
        this.sourcePathName = sourcePathName;
        return this;
    }
 
    public DncLogExcelVO setTargetPathName(final String targetPathName) {
        this.targetPathName = targetPathName;
        return this;
    }
 
    public DncLogExcelVO setStorageSpace(final Integer storageSpace) {
        this.storageSpace = storageSpace;
        return this;
    }
 
    public DncLogExcelVO setStorageSpaceDec(final String storageSpaceDec) {
        this.storageSpaceDec = storageSpaceDec;
        return this;
    }
 
    public DncLogExcelVO setFileLocation(final Integer fileLocation) {
        this.fileLocation = fileLocation;
        return this;
    }
 
    public DncLogExcelVO setFileLocationDesc(final String fileLocationDesc) {
        this.fileLocationDesc = fileLocationDesc;
        return this;
    }
 
    public DncLogExcelVO setOperatorName(final String operatorName) {
        this.operatorName = operatorName;
        return this;
    }
 
    public DncLogExcelVO setOperationTime(final Date operationTime) {
        this.operationTime = operationTime;
        return this;
    }
 
    public DncLogExcelVO setSourceType(final Integer sourceType) {
        this.sourceType = sourceType;
        return this;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DncLogExcelVO) {
            DncLogExcelVO other = (DncLogExcelVO) o;
            if (other.canEqual(this)) {
                Object this$operationType = getOperationType();
                Object other$operationType = other.getOperationType();
                if (this$operationType == null) {
                    if (other$operationType != null) {
                        return false;
                    }
                } else if (!this$operationType.equals(other$operationType)) {
                    return false;
                }
                Object this$storageSpace = getStorageSpace();
                Object other$storageSpace = other.getStorageSpace();
                if (this$storageSpace == null) {
                    if (other$storageSpace != null) {
                        return false;
                    }
                } else if (!this$storageSpace.equals(other$storageSpace)) {
                    return false;
                }
                Object this$fileLocation = getFileLocation();
                Object other$fileLocation = other.getFileLocation();
                if (this$fileLocation == null) {
                    if (other$fileLocation != null) {
                        return false;
                    }
                } else if (!this$fileLocation.equals(other$fileLocation)) {
                    return false;
                }
                Object this$sourceType = getSourceType();
                Object other$sourceType = other.getSourceType();
                if (this$sourceType == null) {
                    if (other$sourceType != null) {
                        return false;
                    }
                } else if (!this$sourceType.equals(other$sourceType)) {
                    return false;
                }
                Object this$fileName = getFileName();
                Object other$fileName = other.getFileName();
                if (this$fileName == null) {
                    if (other$fileName != null) {
                        return false;
                    }
                } else if (!this$fileName.equals(other$fileName)) {
                    return false;
                }
                Object this$version = getVersion();
                Object other$version = other.getVersion();
                if (this$version == null) {
                    if (other$version != null) {
                        return false;
                    }
                } else if (!this$version.equals(other$version)) {
                    return false;
                }
                Object this$suffix = getSuffix();
                Object other$suffix = other.getSuffix();
                if (this$suffix == null) {
                    if (other$suffix != null) {
                        return false;
                    }
                } else if (!this$suffix.equals(other$suffix)) {
                    return false;
                }
                Object this$sourceTypeDesc = getSourceTypeDesc();
                Object other$sourceTypeDesc = other.getSourceTypeDesc();
                if (this$sourceTypeDesc == null) {
                    if (other$sourceTypeDesc != null) {
                        return false;
                    }
                } else if (!this$sourceTypeDesc.equals(other$sourceTypeDesc)) {
                    return false;
                }
                Object this$operationTypeDesc = getOperationTypeDesc();
                Object other$operationTypeDesc = other.getOperationTypeDesc();
                if (this$operationTypeDesc == null) {
                    if (other$operationTypeDesc != null) {
                        return false;
                    }
                } else if (!this$operationTypeDesc.equals(other$operationTypeDesc)) {
                    return false;
                }
                Object this$sourcePathName = getSourcePathName();
                Object other$sourcePathName = other.getSourcePathName();
                if (this$sourcePathName == null) {
                    if (other$sourcePathName != null) {
                        return false;
                    }
                } else if (!this$sourcePathName.equals(other$sourcePathName)) {
                    return false;
                }
                Object this$targetPathName = getTargetPathName();
                Object other$targetPathName = other.getTargetPathName();
                if (this$targetPathName == null) {
                    if (other$targetPathName != null) {
                        return false;
                    }
                } else if (!this$targetPathName.equals(other$targetPathName)) {
                    return false;
                }
                Object this$storageSpaceDec = getStorageSpaceDec();
                Object other$storageSpaceDec = other.getStorageSpaceDec();
                if (this$storageSpaceDec == null) {
                    if (other$storageSpaceDec != null) {
                        return false;
                    }
                } else if (!this$storageSpaceDec.equals(other$storageSpaceDec)) {
                    return false;
                }
                Object this$fileLocationDesc = getFileLocationDesc();
                Object other$fileLocationDesc = other.getFileLocationDesc();
                if (this$fileLocationDesc == null) {
                    if (other$fileLocationDesc != null) {
                        return false;
                    }
                } else if (!this$fileLocationDesc.equals(other$fileLocationDesc)) {
                    return false;
                }
                Object this$operatorName = getOperatorName();
                Object other$operatorName = other.getOperatorName();
                if (this$operatorName == null) {
                    if (other$operatorName != null) {
                        return false;
                    }
                } else if (!this$operatorName.equals(other$operatorName)) {
                    return false;
                }
                Object this$operationTime = getOperationTime();
                Object other$operationTime = other.getOperationTime();
                return this$operationTime == null ? other$operationTime == null : this$operationTime.equals(other$operationTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DncLogExcelVO;
    }
 
    public int hashCode() {
        Object $operationType = getOperationType();
        int result = (1 * 59) + ($operationType == null ? 43 : $operationType.hashCode());
        Object $storageSpace = getStorageSpace();
        int result2 = (result * 59) + ($storageSpace == null ? 43 : $storageSpace.hashCode());
        Object $fileLocation = getFileLocation();
        int result3 = (result2 * 59) + ($fileLocation == null ? 43 : $fileLocation.hashCode());
        Object $sourceType = getSourceType();
        int result4 = (result3 * 59) + ($sourceType == null ? 43 : $sourceType.hashCode());
        Object $fileName = getFileName();
        int result5 = (result4 * 59) + ($fileName == null ? 43 : $fileName.hashCode());
        Object $version = getVersion();
        int result6 = (result5 * 59) + ($version == null ? 43 : $version.hashCode());
        Object $suffix = getSuffix();
        int result7 = (result6 * 59) + ($suffix == null ? 43 : $suffix.hashCode());
        Object $sourceTypeDesc = getSourceTypeDesc();
        int result8 = (result7 * 59) + ($sourceTypeDesc == null ? 43 : $sourceTypeDesc.hashCode());
        Object $operationTypeDesc = getOperationTypeDesc();
        int result9 = (result8 * 59) + ($operationTypeDesc == null ? 43 : $operationTypeDesc.hashCode());
        Object $sourcePathName = getSourcePathName();
        int result10 = (result9 * 59) + ($sourcePathName == null ? 43 : $sourcePathName.hashCode());
        Object $targetPathName = getTargetPathName();
        int result11 = (result10 * 59) + ($targetPathName == null ? 43 : $targetPathName.hashCode());
        Object $storageSpaceDec = getStorageSpaceDec();
        int result12 = (result11 * 59) + ($storageSpaceDec == null ? 43 : $storageSpaceDec.hashCode());
        Object $fileLocationDesc = getFileLocationDesc();
        int result13 = (result12 * 59) + ($fileLocationDesc == null ? 43 : $fileLocationDesc.hashCode());
        Object $operatorName = getOperatorName();
        int result14 = (result13 * 59) + ($operatorName == null ? 43 : $operatorName.hashCode());
        Object $operationTime = getOperationTime();
        return (result14 * 59) + ($operationTime == null ? 43 : $operationTime.hashCode());
    }
 
    public String toString() {
        return "DncLogExcelVO(fileName=" + getFileName() + ", version=" + getVersion() + ", suffix=" + getSuffix() + ", sourceTypeDesc=" + getSourceTypeDesc() + ", operationType=" + getOperationType() + ", operationTypeDesc=" + getOperationTypeDesc() + ", sourcePathName=" + getSourcePathName() + ", targetPathName=" + getTargetPathName() + ", storageSpace=" + getStorageSpace() + ", storageSpaceDec=" + getStorageSpaceDec() + ", fileLocation=" + getFileLocation() + ", fileLocationDesc=" + getFileLocationDesc() + ", operatorName=" + getOperatorName() + ", operationTime=" + getOperationTime() + ", sourceType=" + getSourceType() + ")";
    }
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncLogExcelVO$DncLogExcelVOBuilder.class */
    public static class DncLogExcelVOBuilder {
        private String fileName;
        private String version;
        private String suffix;
        private String sourceTypeDesc;
        private Integer operationType;
        private String operationTypeDesc;
        private String sourcePathName;
        private String targetPathName;
        private Integer storageSpace;
        private String storageSpaceDec;
        private Integer fileLocation;
        private String fileLocationDesc;
        private String operatorName;
        private Date operationTime;
        private Integer sourceType;
 
        DncLogExcelVOBuilder() {
        }
 
        public DncLogExcelVOBuilder fileName(final String fileName) {
            this.fileName = fileName;
            return this;
        }
 
        public DncLogExcelVOBuilder version(final String version) {
            this.version = version;
            return this;
        }
 
        public DncLogExcelVOBuilder suffix(final String suffix) {
            this.suffix = suffix;
            return this;
        }
 
        public DncLogExcelVOBuilder sourceTypeDesc(final String sourceTypeDesc) {
            this.sourceTypeDesc = sourceTypeDesc;
            return this;
        }
 
        public DncLogExcelVOBuilder operationType(final Integer operationType) {
            this.operationType = operationType;
            return this;
        }
 
        public DncLogExcelVOBuilder operationTypeDesc(final String operationTypeDesc) {
            this.operationTypeDesc = operationTypeDesc;
            return this;
        }
 
        public DncLogExcelVOBuilder sourcePathName(final String sourcePathName) {
            this.sourcePathName = sourcePathName;
            return this;
        }
 
        public DncLogExcelVOBuilder targetPathName(final String targetPathName) {
            this.targetPathName = targetPathName;
            return this;
        }
 
        public DncLogExcelVOBuilder storageSpace(final Integer storageSpace) {
            this.storageSpace = storageSpace;
            return this;
        }
 
        public DncLogExcelVOBuilder storageSpaceDec(final String storageSpaceDec) {
            this.storageSpaceDec = storageSpaceDec;
            return this;
        }
 
        public DncLogExcelVOBuilder fileLocation(final Integer fileLocation) {
            this.fileLocation = fileLocation;
            return this;
        }
 
        public DncLogExcelVOBuilder fileLocationDesc(final String fileLocationDesc) {
            this.fileLocationDesc = fileLocationDesc;
            return this;
        }
 
        public DncLogExcelVOBuilder operatorName(final String operatorName) {
            this.operatorName = operatorName;
            return this;
        }
 
        public DncLogExcelVOBuilder operationTime(final Date operationTime) {
            this.operationTime = operationTime;
            return this;
        }
 
        public DncLogExcelVOBuilder sourceType(final Integer sourceType) {
            this.sourceType = sourceType;
            return this;
        }
 
        public DncLogExcelVO build() {
            return new DncLogExcelVO(this.fileName, this.version, this.suffix, this.sourceTypeDesc, this.operationType, this.operationTypeDesc, this.sourcePathName, this.targetPathName, this.storageSpace, this.storageSpaceDec, this.fileLocation, this.fileLocationDesc, this.operatorName, this.operationTime, this.sourceType);
        }
 
        public String toString() {
            return "DncLogExcelVO.DncLogExcelVOBuilder(fileName=" + this.fileName + ", version=" + this.version + ", suffix=" + this.suffix + ", sourceTypeDesc=" + this.sourceTypeDesc + ", operationType=" + this.operationType + ", operationTypeDesc=" + this.operationTypeDesc + ", sourcePathName=" + this.sourcePathName + ", targetPathName=" + this.targetPathName + ", storageSpace=" + this.storageSpace + ", storageSpaceDec=" + this.storageSpaceDec + ", fileLocation=" + this.fileLocation + ", fileLocationDesc=" + this.fileLocationDesc + ", operatorName=" + this.operatorName + ", operationTime=" + this.operationTime + ", sourceType=" + this.sourceType + ")";
        }
    }
 
    DncLogExcelVO(final String fileName, final String version, final String suffix, final String sourceTypeDesc, final Integer operationType, final String operationTypeDesc, final String sourcePathName, final String targetPathName, final Integer storageSpace, final String storageSpaceDec, final Integer fileLocation, final String fileLocationDesc, final String operatorName, final Date operationTime, final Integer sourceType) {
        this.fileName = fileName;
        this.version = version;
        this.suffix = suffix;
        this.sourceTypeDesc = sourceTypeDesc;
        this.operationType = operationType;
        this.operationTypeDesc = operationTypeDesc;
        this.sourcePathName = sourcePathName;
        this.targetPathName = targetPathName;
        this.storageSpace = storageSpace;
        this.storageSpaceDec = storageSpaceDec;
        this.fileLocation = fileLocation;
        this.fileLocationDesc = fileLocationDesc;
        this.operatorName = operatorName;
        this.operationTime = operationTime;
        this.sourceType = sourceType;
    }
 
    public static DncLogExcelVOBuilder builder() {
        return new DncLogExcelVOBuilder();
    }
 
    public String getFileName() {
        return this.fileName;
    }
 
    public String getVersion() {
        return this.version;
    }
 
    public String getSuffix() {
        return this.suffix;
    }
 
    public String getSourceTypeDesc() {
        return this.sourceTypeDesc;
    }
 
    public Integer getOperationType() {
        return this.operationType;
    }
 
    public String getOperationTypeDesc() {
        return this.operationTypeDesc;
    }
 
    public String getSourcePathName() {
        return this.sourcePathName;
    }
 
    public String getTargetPathName() {
        return this.targetPathName;
    }
 
    public Integer getStorageSpace() {
        return this.storageSpace;
    }
 
    public String getStorageSpaceDec() {
        return this.storageSpaceDec;
    }
 
    public Integer getFileLocation() {
        return this.fileLocation;
    }
 
    public String getFileLocationDesc() {
        return this.fileLocationDesc;
    }
 
    public String getOperatorName() {
        return this.operatorName;
    }
 
    public Date getOperationTime() {
        return this.operationTime;
    }
 
    public Integer getSourceType() {
        return this.sourceType;
    }
}