package com.qianwen.smartman.modules.dnc.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FtpDirectoryVO.class */
|
public class FtpDirectoryVO implements Serializable {
|
private static final long serialVersionUID = -7168712787807032171L;
|
@ApiModelProperty("路径")
|
private String path;
|
@ApiModelProperty("路径下的资源")
|
private List<EntityInfoVO> list;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FtpDirectoryVO$FtpDirectoryVOBuilder.class */
|
public static class FtpDirectoryVOBuilder {
|
private String path;
|
private List<EntityInfoVO> list;
|
|
FtpDirectoryVOBuilder() {
|
}
|
|
public FtpDirectoryVOBuilder path(final String path) {
|
this.path = path;
|
return this;
|
}
|
|
public FtpDirectoryVOBuilder list(final List<EntityInfoVO> list) {
|
this.list = list;
|
return this;
|
}
|
|
public FtpDirectoryVO build() {
|
return new FtpDirectoryVO(this.path, this.list);
|
}
|
|
public String toString() {
|
return "FtpDirectoryVO.FtpDirectoryVOBuilder(path=" + this.path + ", list=" + this.list + ")";
|
}
|
}
|
|
public void setPath(final String path) {
|
this.path = path;
|
}
|
|
public void setList(final List<EntityInfoVO> list) {
|
this.list = list;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof FtpDirectoryVO) {
|
FtpDirectoryVO other = (FtpDirectoryVO) o;
|
if (other.canEqual(this)) {
|
Object this$path = getPath();
|
Object other$path = other.getPath();
|
if (this$path == null) {
|
if (other$path != null) {
|
return false;
|
}
|
} else if (!this$path.equals(other$path)) {
|
return false;
|
}
|
Object this$list = getList();
|
Object other$list = other.getList();
|
return this$list == null ? other$list == null : this$list.equals(other$list);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof FtpDirectoryVO;
|
}
|
|
public int hashCode() {
|
Object $path = getPath();
|
int result = (1 * 59) + ($path == null ? 43 : $path.hashCode());
|
Object $list = getList();
|
return (result * 59) + ($list == null ? 43 : $list.hashCode());
|
}
|
|
public String toString() {
|
return "FtpDirectoryVO(path=" + getPath() + ", list=" + getList() + ")";
|
}
|
|
public static FtpDirectoryVOBuilder builder() {
|
return new FtpDirectoryVOBuilder();
|
}
|
|
public FtpDirectoryVO() {
|
}
|
|
public FtpDirectoryVO(final String path, final List<EntityInfoVO> list) {
|
this.path = path;
|
this.list = list;
|
}
|
|
public String getPath() {
|
return this.path;
|
}
|
|
public List<EntityInfoVO> getList() {
|
return this.list;
|
}
|
}
|