package com.qianwen.smartman.modules.dnc.vo; import javax.validation.constraints.NotBlank; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FactoryFileVO.class */ public class FactoryFileVO { @NotBlank(message = "文件名称不能为空") private String fileName; @NotBlank(message = "objectKey不能为空") private String objectKey; public void setFileName(final String fileName) { this.fileName = fileName; } public void setObjectKey(final String objectKey) { this.objectKey = objectKey; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof FactoryFileVO) { FactoryFileVO other = (FactoryFileVO) o; if (other.canEqual(this)) { Object this$fileName = getFileName(); Object other$fileName = other.getFileName(); if (this$fileName == null) { if (other$fileName != null) { return false; } } else if (!this$fileName.equals(other$fileName)) { return false; } Object this$objectKey = getObjectKey(); Object other$objectKey = other.getObjectKey(); return this$objectKey == null ? other$objectKey == null : this$objectKey.equals(other$objectKey); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof FactoryFileVO; } public int hashCode() { Object $fileName = getFileName(); int result = (1 * 59) + ($fileName == null ? 43 : $fileName.hashCode()); Object $objectKey = getObjectKey(); return (result * 59) + ($objectKey == null ? 43 : $objectKey.hashCode()); } public String toString() { return "FactoryFileVO(fileName=" + getFileName() + ", objectKey=" + getObjectKey() + ")"; } public String getFileName() { return this.fileName; } public String getObjectKey() { return this.objectKey; } }