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