yangys
2024-05-30 a3686cfa49bf53fb91a2ceb960cf15b3ebdac641
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
package com.qianwen.core.oss.model;
 
public class BladeFile {
    private String link;
    private String domain;
    private String name;
    private String originalName;
    private Long attachId;
 
    public void setLink(final String link) {
        this.link = link;
    }
 
    public void setDomain(final String domain) {
        this.domain = domain;
    }
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setOriginalName(final String originalName) {
        this.originalName = originalName;
    }
 
    public void setAttachId(final Long attachId) {
        this.attachId = attachId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof BladeFile) {
            BladeFile other = (BladeFile) o;
            if (other.canEqual(this)) {
                Object this$attachId = getAttachId();
                Object other$attachId = other.getAttachId();
                if (this$attachId == null) {
                    if (other$attachId != null) {
                        return false;
                    }
                } else if (!this$attachId.equals(other$attachId)) {
                    return false;
                }
                Object this$link = getLink();
                Object other$link = other.getLink();
                if (this$link == null) {
                    if (other$link != null) {
                        return false;
                    }
                } else if (!this$link.equals(other$link)) {
                    return false;
                }
                Object this$domain = getDomain();
                Object other$domain = other.getDomain();
                if (this$domain == null) {
                    if (other$domain != null) {
                        return false;
                    }
                } else if (!this$domain.equals(other$domain)) {
                    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$originalName = getOriginalName();
                Object other$originalName = other.getOriginalName();
                return this$originalName == null ? other$originalName == null : this$originalName.equals(other$originalName);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof BladeFile;
    }
 
    public int hashCode() {
        Object $attachId = getAttachId();
        int result = (1 * 59) + ($attachId == null ? 43 : $attachId.hashCode());
        Object $link = getLink();
        int result2 = (result * 59) + ($link == null ? 43 : $link.hashCode());
        Object $domain = getDomain();
        int result3 = (result2 * 59) + ($domain == null ? 43 : $domain.hashCode());
        Object $name = getName();
        int result4 = (result3 * 59) + ($name == null ? 43 : $name.hashCode());
        Object $originalName = getOriginalName();
        return (result4 * 59) + ($originalName == null ? 43 : $originalName.hashCode());
    }
 
    public String toString() {
        return "BladeFile(link=" + getLink() + ", domain=" + getDomain() + ", name=" + getName() + ", originalName=" + getOriginalName() + ", attachId=" + getAttachId() + ")";
    }
 
    public String getLink() {
        return this.link;
    }
 
    public String getDomain() {
        return this.domain;
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getOriginalName() {
        return this.originalName;
    }
 
    public Long getAttachId() {
        return this.attachId;
    }
}