package com.qianwen.smartman.modules.dnc.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
public class FileOnlineWriteVo {
|
@ApiModelProperty("guid")
|
private String ID;
|
@ApiModelProperty("文件名称")
|
private String Name;
|
@ApiModelProperty("文件流")
|
private String Content;
|
|
public void setID(final String ID) {
|
this.ID = ID;
|
}
|
|
public void setName(final String Name) {
|
this.Name = Name;
|
}
|
|
public void setContent(final String Content) {
|
this.Content = Content;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof FileOnlineWriteVo) {
|
FileOnlineWriteVo other = (FileOnlineWriteVo) o;
|
if (other.canEqual(this)) {
|
Object this$ID = getID();
|
Object other$ID = other.getID();
|
if (this$ID == null) {
|
if (other$ID != null) {
|
return false;
|
}
|
} else if (!this$ID.equals(other$ID)) {
|
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$Content = getContent();
|
Object other$Content = other.getContent();
|
return this$Content == null ? other$Content == null : this$Content.equals(other$Content);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof FileOnlineWriteVo;
|
}
|
|
public int hashCode() {
|
Object $ID = getID();
|
int result = (1 * 59) + ($ID == null ? 43 : $ID.hashCode());
|
Object $Name = getName();
|
int result2 = (result * 59) + ($Name == null ? 43 : $Name.hashCode());
|
Object $Content = getContent();
|
return (result2 * 59) + ($Content == null ? 43 : $Content.hashCode());
|
}
|
|
public String toString() {
|
return "FileOnlineWriteVo(ID=" + getID() + ", Name=" + getName() + ", Content=" + getContent() + ")";
|
}
|
|
public String getID() {
|
return this.ID;
|
}
|
|
public String getName() {
|
return this.Name;
|
}
|
|
public String getContent() {
|
return this.Content;
|
}
|
}
|