package com.qianwen.smartman.modules.dnc.vo; import java.util.Collection; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DeleteFileVO.class */ public class DeleteFileVO { private Collection sourceIdList; public void setSourceIdList(final Collection sourceIdList) { this.sourceIdList = sourceIdList; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof DeleteFileVO) { DeleteFileVO other = (DeleteFileVO) o; if (other.canEqual(this)) { Object this$sourceIdList = getSourceIdList(); Object other$sourceIdList = other.getSourceIdList(); return this$sourceIdList == null ? other$sourceIdList == null : this$sourceIdList.equals(other$sourceIdList); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof DeleteFileVO; } public int hashCode() { Object $sourceIdList = getSourceIdList(); int result = (1 * 59) + ($sourceIdList == null ? 43 : $sourceIdList.hashCode()); return result; } public String toString() { return "DeleteFileVO(sourceIdList=" + getSourceIdList() + ")"; } public Collection getSourceIdList() { return this.sourceIdList; } }