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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package org.jeecg.modules.doc.vo;
 
import com.aliyun.oss.OSS;
import org.jeecg.modules.doc.entity.Range;
 
public class DownloadFile {
    private String fileUrl;
    private OSS ossClient;
    private Range range;
 
    public DownloadFile() {
    }
 
    public String getFileUrl() {
        return this.fileUrl;
    }
 
    public OSS getOssClient() {
        return this.ossClient;
    }
 
    public Range getRange() {
        return this.range;
    }
 
    public void setFileUrl(final String fileUrl) {
        this.fileUrl = fileUrl;
    }
 
    public void setOssClient(final OSS ossClient) {
        this.ossClient = ossClient;
    }
 
    public void setRange(final Range range) {
        this.range = range;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof DownloadFile)) {
            return false;
        } else {
            DownloadFile other = (DownloadFile)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                label47: {
                    Object this$fileUrl = this.getFileUrl();
                    Object other$fileUrl = other.getFileUrl();
                    if (this$fileUrl == null) {
                        if (other$fileUrl == null) {
                            break label47;
                        }
                    } else if (this$fileUrl.equals(other$fileUrl)) {
                        break label47;
                    }
 
                    return false;
                }
 
                Object this$ossClient = this.getOssClient();
                Object other$ossClient = other.getOssClient();
                if (this$ossClient == null) {
                    if (other$ossClient != null) {
                        return false;
                    }
                } else if (!this$ossClient.equals(other$ossClient)) {
                    return false;
                }
 
                Object this$range = this.getRange();
                Object other$range = other.getRange();
                if (this$range == null) {
                    if (other$range != null) {
                        return false;
                    }
                } else if (!this$range.equals(other$range)) {
                    return false;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DownloadFile;
    }
 
    public int hashCode() {
        boolean PRIME = true;
        int result = 1;
        Object $fileUrl = this.getFileUrl();
        result = result * 59 + ($fileUrl == null ? 43 : $fileUrl.hashCode());
        Object $ossClient = this.getOssClient();
        result = result * 59 + ($ossClient == null ? 43 : $ossClient.hashCode());
        Object $range = this.getRange();
        result = result * 59 + ($range == null ? 43 : $range.hashCode());
        return result;
    }
 
    public String toString() {
        return "DownloadFile(fileUrl=" + this.getFileUrl() + ", ossClient=" + this.getOssClient() + ", range=" + this.getRange() + ")";
    }
}