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
package com.qianwen.smartman.modules.dnc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotBlank;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/VerifyArchiveFileCheckVO.class */
public class VerifyArchiveFileCheckVO {
    @NotBlank(message = "工位id必传")
    @ApiModelProperty("工位id")
    private String workstationId;
    @NotBlank(message = "文件名称不能为空")
    @ApiModelProperty("文件名称")
    private String filename;
    @ApiModelProperty("objectKey")
    private String objectKey;
    @ApiModelProperty("文件md5值")
    private String contentMd5;
 
    public void setWorkstationId(final String workstationId) {
        this.workstationId = workstationId;
    }
 
    public void setFilename(final String filename) {
        this.filename = filename;
    }
 
    public void setObjectKey(final String objectKey) {
        this.objectKey = objectKey;
    }
 
    public void setContentMd5(final String contentMd5) {
        this.contentMd5 = contentMd5;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof VerifyArchiveFileCheckVO) {
            VerifyArchiveFileCheckVO other = (VerifyArchiveFileCheckVO) o;
            if (other.canEqual(this)) {
                Object this$workstationId = getWorkstationId();
                Object other$workstationId = other.getWorkstationId();
                if (this$workstationId == null) {
                    if (other$workstationId != null) {
                        return false;
                    }
                } else if (!this$workstationId.equals(other$workstationId)) {
                    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$objectKey = getObjectKey();
                Object other$objectKey = other.getObjectKey();
                if (this$objectKey == null) {
                    if (other$objectKey != null) {
                        return false;
                    }
                } else if (!this$objectKey.equals(other$objectKey)) {
                    return false;
                }
                Object this$contentMd5 = getContentMd5();
                Object other$contentMd5 = other.getContentMd5();
                return this$contentMd5 == null ? other$contentMd5 == null : this$contentMd5.equals(other$contentMd5);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof VerifyArchiveFileCheckVO;
    }
 
    public int hashCode() {
        Object $workstationId = getWorkstationId();
        int result = (1 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
        Object $filename = getFilename();
        int result2 = (result * 59) + ($filename == null ? 43 : $filename.hashCode());
        Object $objectKey = getObjectKey();
        int result3 = (result2 * 59) + ($objectKey == null ? 43 : $objectKey.hashCode());
        Object $contentMd5 = getContentMd5();
        return (result3 * 59) + ($contentMd5 == null ? 43 : $contentMd5.hashCode());
    }
 
    public String toString() {
        return "VerifyArchiveFileCheckVO(workstationId=" + getWorkstationId() + ", filename=" + getFilename() + ", objectKey=" + getObjectKey() + ", contentMd5=" + getContentMd5() + ")";
    }
 
    public String getWorkstationId() {
        return this.workstationId;
    }
 
    public String getFilename() {
        return this.filename;
    }
 
    public String getObjectKey() {
        return this.objectKey;
    }
 
    public String getContentMd5() {
        return this.contentMd5;
    }
}