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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package org.jeecg.modules.doc.vo;
 
public class CopyFile {
    private String extendName;
 
    public CopyFile() {
    }
 
    public String getExtendName() {
        return this.extendName;
    }
 
    public void setExtendName(final String extendName) {
        this.extendName = extendName;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        } else if (!(o instanceof CopyFile)) {
            return false;
        } else {
            CopyFile other = (CopyFile)o;
            if (!other.canEqual(this)) {
                return false;
            } else {
                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;
                }
 
                return true;
            }
        }
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CopyFile;
    }
 
    public int hashCode() {
        int result = 1;
        Object $extendName = this.getExtendName();
        result = result * 59 + ($extendName == null ? 43 : $extendName.hashCode());
        return result;
    }
 
    public String toString() {
        return "CopyFile(extendName=" + this.getExtendName() + ")";
    }
}