//
|
// 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() + ")";
|
}
|
}
|