package com.qianwen.smartman.modules.dnc.vo; import io.swagger.annotations.ApiModelProperty; import java.util.List; import javax.validation.constraints.NotEmpty; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/VerifyArchiveFileVO.class */ public class VerifyArchiveFileVO { @NotEmpty(message = "归档目录id必传") @ApiModelProperty("归档目录id") private List archiveDirectoryIds; @NotEmpty(message = "文件信息必传") @ApiModelProperty("文件校验") private List voList; public VerifyArchiveFileVO setArchiveDirectoryIds(final List archiveDirectoryIds) { this.archiveDirectoryIds = archiveDirectoryIds; return this; } public VerifyArchiveFileVO setVoList(final List voList) { this.voList = voList; return this; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof VerifyArchiveFileVO) { VerifyArchiveFileVO other = (VerifyArchiveFileVO) o; if (other.canEqual(this)) { Object this$archiveDirectoryIds = getArchiveDirectoryIds(); Object other$archiveDirectoryIds = other.getArchiveDirectoryIds(); if (this$archiveDirectoryIds == null) { if (other$archiveDirectoryIds != null) { return false; } } else if (!this$archiveDirectoryIds.equals(other$archiveDirectoryIds)) { return false; } Object this$voList = getVoList(); Object other$voList = other.getVoList(); return this$voList == null ? other$voList == null : this$voList.equals(other$voList); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof VerifyArchiveFileVO; } public int hashCode() { Object $archiveDirectoryIds = getArchiveDirectoryIds(); int result = (1 * 59) + ($archiveDirectoryIds == null ? 43 : $archiveDirectoryIds.hashCode()); Object $voList = getVoList(); return (result * 59) + ($voList == null ? 43 : $voList.hashCode()); } public String toString() { return "VerifyArchiveFileVO(archiveDirectoryIds=" + getArchiveDirectoryIds() + ", voList=" + getVoList() + ")"; } public List getArchiveDirectoryIds() { return this.archiveDirectoryIds; } public List getVoList() { return this.voList; } }