package com.qianwen.smartman.modules.dnc.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; @ApiModel("DncArtBagLogPageVO对象") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncArtBagLogPageVO.class */ public class DncArtBagLogPageVO implements Serializable { @ApiModelProperty("文件名称") private String fileName; @ApiModelProperty("文件类型") private String fileClass; @ApiModelProperty("文件属性") private Integer fileType; @ApiModelProperty("文件归属") private Integer fileBelong; @ApiModelProperty("存储空间") private Integer storage; @ApiModelProperty(value = "工艺包id", dataType = "java.lang.String") private Long bagId; public void setFileName(final String fileName) { this.fileName = fileName; } public void setFileClass(final String fileClass) { this.fileClass = fileClass; } public void setFileType(final Integer fileType) { this.fileType = fileType; } public void setFileBelong(final Integer fileBelong) { this.fileBelong = fileBelong; } public void setStorage(final Integer storage) { this.storage = storage; } public void setBagId(final Long bagId) { this.bagId = bagId; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof DncArtBagLogPageVO) { DncArtBagLogPageVO other = (DncArtBagLogPageVO) o; if (other.canEqual(this)) { Object this$fileType = getFileType(); Object other$fileType = other.getFileType(); if (this$fileType == null) { if (other$fileType != null) { return false; } } else if (!this$fileType.equals(other$fileType)) { return false; } Object this$fileBelong = getFileBelong(); Object other$fileBelong = other.getFileBelong(); if (this$fileBelong == null) { if (other$fileBelong != null) { return false; } } else if (!this$fileBelong.equals(other$fileBelong)) { return false; } Object this$storage = getStorage(); Object other$storage = other.getStorage(); if (this$storage == null) { if (other$storage != null) { return false; } } else if (!this$storage.equals(other$storage)) { return false; } Object this$bagId = getBagId(); Object other$bagId = other.getBagId(); if (this$bagId == null) { if (other$bagId != null) { return false; } } else if (!this$bagId.equals(other$bagId)) { return false; } 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$fileClass = getFileClass(); Object other$fileClass = other.getFileClass(); return this$fileClass == null ? other$fileClass == null : this$fileClass.equals(other$fileClass); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof DncArtBagLogPageVO; } public int hashCode() { Object $fileType = getFileType(); int result = (1 * 59) + ($fileType == null ? 43 : $fileType.hashCode()); Object $fileBelong = getFileBelong(); int result2 = (result * 59) + ($fileBelong == null ? 43 : $fileBelong.hashCode()); Object $storage = getStorage(); int result3 = (result2 * 59) + ($storage == null ? 43 : $storage.hashCode()); Object $bagId = getBagId(); int result4 = (result3 * 59) + ($bagId == null ? 43 : $bagId.hashCode()); Object $fileName = getFileName(); int result5 = (result4 * 59) + ($fileName == null ? 43 : $fileName.hashCode()); Object $fileClass = getFileClass(); return (result5 * 59) + ($fileClass == null ? 43 : $fileClass.hashCode()); } public String toString() { return "DncArtBagLogPageVO(fileName=" + getFileName() + ", fileClass=" + getFileClass() + ", fileType=" + getFileType() + ", fileBelong=" + getFileBelong() + ", storage=" + getStorage() + ", bagId=" + getBagId() + ")"; } public String getFileName() { return this.fileName; } public String getFileClass() { return this.fileClass; } public Integer getFileType() { return this.fileType; } public Integer getFileBelong() { return this.fileBelong; } public Integer getStorage() { return this.storage; } public Long getBagId() { return this.bagId; } }