package com.qianwen.smartman.modules.dnc.vo; import io.swagger.annotations.ApiModelProperty; import java.util.List; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FtpDirectorySearchVO.class */ public class FtpDirectorySearchVO { @ApiModelProperty("工位id集合") private List workstationIds; @ApiModelProperty("目录名称") private String name; public void setWorkstationIds(final List workstationIds) { this.workstationIds = workstationIds; } public void setName(final String name) { this.name = name; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof FtpDirectorySearchVO) { FtpDirectorySearchVO other = (FtpDirectorySearchVO) o; if (other.canEqual(this)) { Object this$workstationIds = getWorkstationIds(); Object other$workstationIds = other.getWorkstationIds(); if (this$workstationIds == null) { if (other$workstationIds != null) { return false; } } else if (!this$workstationIds.equals(other$workstationIds)) { return false; } Object this$name = getName(); Object other$name = other.getName(); return this$name == null ? other$name == null : this$name.equals(other$name); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof FtpDirectorySearchVO; } public int hashCode() { Object $workstationIds = getWorkstationIds(); int result = (1 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode()); Object $name = getName(); return (result * 59) + ($name == null ? 43 : $name.hashCode()); } public String toString() { return "FtpDirectorySearchVO(workstationIds=" + getWorkstationIds() + ", name=" + getName() + ")"; } public List getWorkstationIds() { return this.workstationIds; } public String getName() { return this.name; } }