package com.qianwen.smartman.modules.dnc.excel; import com.alibaba.excel.annotation.ExcelProperty; import io.swagger.annotations.ApiModel; import java.io.Serializable; import java.util.Date; @ApiModel("DncArtBagLogExcel对象") public class DncArtBagLogExcel implements Serializable { @ExcelProperty({"文件名称"}) private String fileName; @ExcelProperty({"版本号"}) private String version; @ExcelProperty({"文件类型"}) private String suffix; @ExcelProperty({"文件属性"}) private String fileType; @ExcelProperty({"文件归属"}) private String fileBelong; @ExcelProperty({"操作类型"}) private String operationType; @ExcelProperty({"操作人员"}) private String operatorName; @ExcelProperty({"操作时间"}) private Date operationTime; public void setFileName(final String fileName) { this.fileName = fileName; } public void setVersion(final String version) { this.version = version; } public void setSuffix(final String suffix) { this.suffix = suffix; } public void setFileType(final String fileType) { this.fileType = fileType; } public void setFileBelong(final String fileBelong) { this.fileBelong = fileBelong; } public void setOperationType(final String operationType) { this.operationType = operationType; } public void setOperatorName(final String operatorName) { this.operatorName = operatorName; } public void setOperationTime(final Date operationTime) { this.operationTime = operationTime; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof DncArtBagLogExcel) { DncArtBagLogExcel other = (DncArtBagLogExcel) 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$version = getVersion(); Object other$version = other.getVersion(); if (this$version == null) { if (other$version != null) { return false; } } else if (!this$version.equals(other$version)) { return false; } Object this$suffix = getSuffix(); Object other$suffix = other.getSuffix(); if (this$suffix == null) { if (other$suffix != null) { return false; } } else if (!this$suffix.equals(other$suffix)) { return false; } 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$operationType = getOperationType(); Object other$operationType = other.getOperationType(); if (this$operationType == null) { if (other$operationType != null) { return false; } } else if (!this$operationType.equals(other$operationType)) { return false; } Object this$operatorName = getOperatorName(); Object other$operatorName = other.getOperatorName(); if (this$operatorName == null) { if (other$operatorName != null) { return false; } } else if (!this$operatorName.equals(other$operatorName)) { return false; } Object this$operationTime = getOperationTime(); Object other$operationTime = other.getOperationTime(); return this$operationTime == null ? other$operationTime == null : this$operationTime.equals(other$operationTime); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof DncArtBagLogExcel; } public int hashCode() { Object $fileName = getFileName(); int result = (1 * 59) + ($fileName == null ? 43 : $fileName.hashCode()); Object $version = getVersion(); int result2 = (result * 59) + ($version == null ? 43 : $version.hashCode()); Object $suffix = getSuffix(); int result3 = (result2 * 59) + ($suffix == null ? 43 : $suffix.hashCode()); Object $fileType = getFileType(); int result4 = (result3 * 59) + ($fileType == null ? 43 : $fileType.hashCode()); Object $fileBelong = getFileBelong(); int result5 = (result4 * 59) + ($fileBelong == null ? 43 : $fileBelong.hashCode()); Object $operationType = getOperationType(); int result6 = (result5 * 59) + ($operationType == null ? 43 : $operationType.hashCode()); Object $operatorName = getOperatorName(); int result7 = (result6 * 59) + ($operatorName == null ? 43 : $operatorName.hashCode()); Object $operationTime = getOperationTime(); return (result7 * 59) + ($operationTime == null ? 43 : $operationTime.hashCode()); } public String toString() { return "DncArtBagLogExcel(fileName=" + getFileName() + ", version=" + getVersion() + ", suffix=" + getSuffix() + ", fileType=" + getFileType() + ", fileBelong=" + getFileBelong() + ", operationType=" + getOperationType() + ", operatorName=" + getOperatorName() + ", operationTime=" + getOperationTime() + ")"; } public String getFileName() { return this.fileName; } public String getVersion() { return this.version; } public String getSuffix() { return this.suffix; } public String getFileType() { return this.fileType; } public String getFileBelong() { return this.fileBelong; } public String getOperationType() { return this.operationType; } public String getOperatorName() { return this.operatorName; } public Date getOperationTime() { return this.operationTime; } }