zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package org.jeecg.modules.doc.vo;
 
 
import org.jeecg.modules.doc.enums.UploadFileStatusEnum;
 
import java.awt.image.BufferedImage;
 
public class UploadFileResult {
    private String fileName;
    private String extendName;
    private long fileSize;
    private String fileUrl;
    private String identifier;
    private UploadFileStatusEnum status;
    private BufferedImage bufferedImage;
 
    public UploadFileResult() {
    }
 
    public String getFileName() {
        return this.fileName;
    }
 
    public String getExtendName() {
        return this.extendName;
    }
 
    public long getFileSize() {
        return this.fileSize;
    }
 
    public String getFileUrl() {
        return this.fileUrl;
    }
 
    public String getIdentifier() {
        return this.identifier;
    }
 
 
 
    public UploadFileStatusEnum getStatus() {
        return this.status;
    }
 
    public BufferedImage getBufferedImage() {
        return this.bufferedImage;
    }
 
    public void setFileName(final String fileName) {
        this.fileName = fileName;
    }
 
    public void setExtendName(final String extendName) {
        this.extendName = extendName;
    }
 
    public void setFileSize(final long fileSize) {
        this.fileSize = fileSize;
    }
 
    public void setFileUrl(final String fileUrl) {
        this.fileUrl = fileUrl;
    }
 
    public void setIdentifier(final String identifier) {
        this.identifier = identifier;
    }
 
 
 
    public void setStatus(final UploadFileStatusEnum status) {
        this.status = status;
    }
 
    public void setBufferedImage(final BufferedImage bufferedImage) {
        this.bufferedImage = bufferedImage;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof UploadFileResult)) {
            return false;
        } else {
            UploadFileResult other = (UploadFileResult)o;
            if (!other.canEqual(this)) {
                return false;
            } else if (this.getFileSize() != other.getFileSize()) {
                return false;
            } else {
                label97: {
                    Object this$fileName = this.getFileName();
                    Object other$fileName = other.getFileName();
                    if (this$fileName == null) {
                        if (other$fileName == null) {
                            break label97;
                        }
                    } else if (this$fileName.equals(other$fileName)) {
                        break label97;
                    }
 
                    return false;
                }
 
                Object this$extendName = this.getExtendName();
                Object other$extendName = other.getExtendName();
                if (this$extendName == null) {
                    if (other$extendName != null) {
                        return false;
                    }
                } else if (!this$extendName.equals(other$extendName)) {
                    return false;
                }
 
                Object this$fileUrl = this.getFileUrl();
                Object other$fileUrl = other.getFileUrl();
                if (this$fileUrl == null) {
                    if (other$fileUrl != null) {
                        return false;
                    }
                } else if (!this$fileUrl.equals(other$fileUrl)) {
                    return false;
                }
 
                label76: {
                    Object this$identifier = this.getIdentifier();
                    Object other$identifier = other.getIdentifier();
                    if (this$identifier == null) {
                        if (other$identifier == null) {
                            break label76;
                        }
                    } else if (this$identifier.equals(other$identifier)) {
                        break label76;
                    }
 
                    return false;
                }
 
                Object this$status = this.getStatus();
                Object other$status = other.getStatus();
                if (this$status == null) {
                    if (other$status != null) {
                        return false;
                    }
                } else if (!this$status.equals(other$status)) {
                    return false;
                }
 
                Object this$bufferedImage = this.getBufferedImage();
                Object other$bufferedImage = other.getBufferedImage();
                if (this$bufferedImage == null) {
                    if (other$bufferedImage != null) {
                        return false;
                    }
                } else if (!this$bufferedImage.equals(other$bufferedImage)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof UploadFileResult;
    }
 
    public int hashCode() {
        boolean PRIME = true;
        int result = 1;
        long $fileSize = this.getFileSize();
        result = result * 59 + (int)($fileSize >>> 32 ^ $fileSize);
        Object $fileName = this.getFileName();
        result = result * 59 + ($fileName == null ? 43 : $fileName.hashCode());
        Object $extendName = this.getExtendName();
        result = result * 59 + ($extendName == null ? 43 : $extendName.hashCode());
        Object $fileUrl = this.getFileUrl();
        result = result * 59 + ($fileUrl == null ? 43 : $fileUrl.hashCode());
        Object $identifier = this.getIdentifier();
        result = result * 59 + ($identifier == null ? 43 : $identifier.hashCode());
 
        Object $status = this.getStatus();
        result = result * 59 + ($status == null ? 43 : $status.hashCode());
        Object $bufferedImage = this.getBufferedImage();
        result = result * 59 + ($bufferedImage == null ? 43 : $bufferedImage.hashCode());
        return result;
    }
 
    public String toString() {
        return "UploadFileResult(fileName=" + this.getFileName() + ", extendName=" + this.getExtendName() + ", fileSize=" + this.getFileSize() + ", fileUrl=" + this.getFileUrl() + ", identifier=" + this.getIdentifier() + ",status=" + this.getStatus() + ", bufferedImage=" + this.getBufferedImage() + ")";
    }
}