package com.qianwen.smartman.modules.dnc.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.util.Date;
|
|
@HeadRowHeight(20)
|
@ColumnWidth(25)
|
@ContentRowHeight(18)
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncLogExcelVO.class */
|
public class DncLogExcelVO {
|
@ColumnWidth(25)
|
@ExcelProperty({"文件名称"})
|
@ApiModelProperty("文件名称")
|
private String fileName;
|
@ColumnWidth(25)
|
@ExcelProperty({"版本"})
|
@ApiModelProperty("版本")
|
private String version;
|
@ColumnWidth(25)
|
@ExcelProperty({"文件类型"})
|
@ApiModelProperty("文件类型")
|
private String suffix;
|
@ColumnWidth(15)
|
@ExcelProperty({"文件来源"})
|
@ApiModelProperty("源类型:本地文件 0、我的文档 1、工位文件 2、工厂文件 3、机床回传4 ")
|
private String sourceTypeDesc;
|
@ExcelIgnore
|
@ApiModelProperty("操作类型:上传1 下载2 删除3 更新4 5移动 6复制")
|
private Integer operationType;
|
@ColumnWidth(15)
|
@ExcelProperty({"操作类型"})
|
@ApiModelProperty("操作类型说明:上传1 下载2 删除3 更新4 5移动 6复制")
|
private String operationTypeDesc;
|
@ColumnWidth(40)
|
@ExcelProperty({"源路径"})
|
@ApiModelProperty("源全路径名称")
|
private String sourcePathName;
|
@ColumnWidth(40)
|
@ExcelProperty({"目标路径"})
|
@ApiModelProperty("目标全路径名称:格式,/我的文档/文件夹1/文件夹2")
|
private String targetPathName;
|
@ExcelIgnore
|
@ApiModelProperty("存储空间:1 常规空间 2 固定空间")
|
private Integer storageSpace;
|
@ColumnWidth(40)
|
@ExcelProperty({"储存空间"})
|
@ApiModelProperty("储存空间:1 常规空间 2 固定空间")
|
private String storageSpaceDec;
|
@ExcelIgnore
|
@ApiModelProperty("文件位置:1 内部存储 2 以太网")
|
private Integer fileLocation;
|
@ColumnWidth(40)
|
@ExcelProperty({"文件位置"})
|
@ApiModelProperty("文件位置:1 内部存储 2 以太网")
|
private String fileLocationDesc;
|
@ColumnWidth(15)
|
@ExcelProperty({"操作人"})
|
@ApiModelProperty("操作人")
|
private String operatorName;
|
@ColumnWidth(30)
|
@ExcelProperty({"操作时间"})
|
@ApiModelProperty("操作时间")
|
private Date operationTime;
|
@ExcelIgnore
|
@ApiModelProperty("源类型:本地文件 0、我的文档 1、工位文件 2、工厂文件 3、机床回传4 、工艺包 5")
|
private Integer sourceType;
|
|
public DncLogExcelVO setFileName(final String fileName) {
|
this.fileName = fileName;
|
return this;
|
}
|
|
public DncLogExcelVO setVersion(final String version) {
|
this.version = version;
|
return this;
|
}
|
|
public DncLogExcelVO setSuffix(final String suffix) {
|
this.suffix = suffix;
|
return this;
|
}
|
|
public DncLogExcelVO setSourceTypeDesc(final String sourceTypeDesc) {
|
this.sourceTypeDesc = sourceTypeDesc;
|
return this;
|
}
|
|
public DncLogExcelVO setOperationType(final Integer operationType) {
|
this.operationType = operationType;
|
return this;
|
}
|
|
public DncLogExcelVO setOperationTypeDesc(final String operationTypeDesc) {
|
this.operationTypeDesc = operationTypeDesc;
|
return this;
|
}
|
|
public DncLogExcelVO setSourcePathName(final String sourcePathName) {
|
this.sourcePathName = sourcePathName;
|
return this;
|
}
|
|
public DncLogExcelVO setTargetPathName(final String targetPathName) {
|
this.targetPathName = targetPathName;
|
return this;
|
}
|
|
public DncLogExcelVO setStorageSpace(final Integer storageSpace) {
|
this.storageSpace = storageSpace;
|
return this;
|
}
|
|
public DncLogExcelVO setStorageSpaceDec(final String storageSpaceDec) {
|
this.storageSpaceDec = storageSpaceDec;
|
return this;
|
}
|
|
public DncLogExcelVO setFileLocation(final Integer fileLocation) {
|
this.fileLocation = fileLocation;
|
return this;
|
}
|
|
public DncLogExcelVO setFileLocationDesc(final String fileLocationDesc) {
|
this.fileLocationDesc = fileLocationDesc;
|
return this;
|
}
|
|
public DncLogExcelVO setOperatorName(final String operatorName) {
|
this.operatorName = operatorName;
|
return this;
|
}
|
|
public DncLogExcelVO setOperationTime(final Date operationTime) {
|
this.operationTime = operationTime;
|
return this;
|
}
|
|
public DncLogExcelVO setSourceType(final Integer sourceType) {
|
this.sourceType = sourceType;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof DncLogExcelVO) {
|
DncLogExcelVO other = (DncLogExcelVO) o;
|
if (other.canEqual(this)) {
|
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$storageSpace = getStorageSpace();
|
Object other$storageSpace = other.getStorageSpace();
|
if (this$storageSpace == null) {
|
if (other$storageSpace != null) {
|
return false;
|
}
|
} else if (!this$storageSpace.equals(other$storageSpace)) {
|
return false;
|
}
|
Object this$fileLocation = getFileLocation();
|
Object other$fileLocation = other.getFileLocation();
|
if (this$fileLocation == null) {
|
if (other$fileLocation != null) {
|
return false;
|
}
|
} else if (!this$fileLocation.equals(other$fileLocation)) {
|
return false;
|
}
|
Object this$sourceType = getSourceType();
|
Object other$sourceType = other.getSourceType();
|
if (this$sourceType == null) {
|
if (other$sourceType != null) {
|
return false;
|
}
|
} else if (!this$sourceType.equals(other$sourceType)) {
|
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$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$sourceTypeDesc = getSourceTypeDesc();
|
Object other$sourceTypeDesc = other.getSourceTypeDesc();
|
if (this$sourceTypeDesc == null) {
|
if (other$sourceTypeDesc != null) {
|
return false;
|
}
|
} else if (!this$sourceTypeDesc.equals(other$sourceTypeDesc)) {
|
return false;
|
}
|
Object this$operationTypeDesc = getOperationTypeDesc();
|
Object other$operationTypeDesc = other.getOperationTypeDesc();
|
if (this$operationTypeDesc == null) {
|
if (other$operationTypeDesc != null) {
|
return false;
|
}
|
} else if (!this$operationTypeDesc.equals(other$operationTypeDesc)) {
|
return false;
|
}
|
Object this$sourcePathName = getSourcePathName();
|
Object other$sourcePathName = other.getSourcePathName();
|
if (this$sourcePathName == null) {
|
if (other$sourcePathName != null) {
|
return false;
|
}
|
} else if (!this$sourcePathName.equals(other$sourcePathName)) {
|
return false;
|
}
|
Object this$targetPathName = getTargetPathName();
|
Object other$targetPathName = other.getTargetPathName();
|
if (this$targetPathName == null) {
|
if (other$targetPathName != null) {
|
return false;
|
}
|
} else if (!this$targetPathName.equals(other$targetPathName)) {
|
return false;
|
}
|
Object this$storageSpaceDec = getStorageSpaceDec();
|
Object other$storageSpaceDec = other.getStorageSpaceDec();
|
if (this$storageSpaceDec == null) {
|
if (other$storageSpaceDec != null) {
|
return false;
|
}
|
} else if (!this$storageSpaceDec.equals(other$storageSpaceDec)) {
|
return false;
|
}
|
Object this$fileLocationDesc = getFileLocationDesc();
|
Object other$fileLocationDesc = other.getFileLocationDesc();
|
if (this$fileLocationDesc == null) {
|
if (other$fileLocationDesc != null) {
|
return false;
|
}
|
} else if (!this$fileLocationDesc.equals(other$fileLocationDesc)) {
|
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 DncLogExcelVO;
|
}
|
|
public int hashCode() {
|
Object $operationType = getOperationType();
|
int result = (1 * 59) + ($operationType == null ? 43 : $operationType.hashCode());
|
Object $storageSpace = getStorageSpace();
|
int result2 = (result * 59) + ($storageSpace == null ? 43 : $storageSpace.hashCode());
|
Object $fileLocation = getFileLocation();
|
int result3 = (result2 * 59) + ($fileLocation == null ? 43 : $fileLocation.hashCode());
|
Object $sourceType = getSourceType();
|
int result4 = (result3 * 59) + ($sourceType == null ? 43 : $sourceType.hashCode());
|
Object $fileName = getFileName();
|
int result5 = (result4 * 59) + ($fileName == null ? 43 : $fileName.hashCode());
|
Object $version = getVersion();
|
int result6 = (result5 * 59) + ($version == null ? 43 : $version.hashCode());
|
Object $suffix = getSuffix();
|
int result7 = (result6 * 59) + ($suffix == null ? 43 : $suffix.hashCode());
|
Object $sourceTypeDesc = getSourceTypeDesc();
|
int result8 = (result7 * 59) + ($sourceTypeDesc == null ? 43 : $sourceTypeDesc.hashCode());
|
Object $operationTypeDesc = getOperationTypeDesc();
|
int result9 = (result8 * 59) + ($operationTypeDesc == null ? 43 : $operationTypeDesc.hashCode());
|
Object $sourcePathName = getSourcePathName();
|
int result10 = (result9 * 59) + ($sourcePathName == null ? 43 : $sourcePathName.hashCode());
|
Object $targetPathName = getTargetPathName();
|
int result11 = (result10 * 59) + ($targetPathName == null ? 43 : $targetPathName.hashCode());
|
Object $storageSpaceDec = getStorageSpaceDec();
|
int result12 = (result11 * 59) + ($storageSpaceDec == null ? 43 : $storageSpaceDec.hashCode());
|
Object $fileLocationDesc = getFileLocationDesc();
|
int result13 = (result12 * 59) + ($fileLocationDesc == null ? 43 : $fileLocationDesc.hashCode());
|
Object $operatorName = getOperatorName();
|
int result14 = (result13 * 59) + ($operatorName == null ? 43 : $operatorName.hashCode());
|
Object $operationTime = getOperationTime();
|
return (result14 * 59) + ($operationTime == null ? 43 : $operationTime.hashCode());
|
}
|
|
public String toString() {
|
return "DncLogExcelVO(fileName=" + getFileName() + ", version=" + getVersion() + ", suffix=" + getSuffix() + ", sourceTypeDesc=" + getSourceTypeDesc() + ", operationType=" + getOperationType() + ", operationTypeDesc=" + getOperationTypeDesc() + ", sourcePathName=" + getSourcePathName() + ", targetPathName=" + getTargetPathName() + ", storageSpace=" + getStorageSpace() + ", storageSpaceDec=" + getStorageSpaceDec() + ", fileLocation=" + getFileLocation() + ", fileLocationDesc=" + getFileLocationDesc() + ", operatorName=" + getOperatorName() + ", operationTime=" + getOperationTime() + ", sourceType=" + getSourceType() + ")";
|
}
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncLogExcelVO$DncLogExcelVOBuilder.class */
|
public static class DncLogExcelVOBuilder {
|
private String fileName;
|
private String version;
|
private String suffix;
|
private String sourceTypeDesc;
|
private Integer operationType;
|
private String operationTypeDesc;
|
private String sourcePathName;
|
private String targetPathName;
|
private Integer storageSpace;
|
private String storageSpaceDec;
|
private Integer fileLocation;
|
private String fileLocationDesc;
|
private String operatorName;
|
private Date operationTime;
|
private Integer sourceType;
|
|
DncLogExcelVOBuilder() {
|
}
|
|
public DncLogExcelVOBuilder fileName(final String fileName) {
|
this.fileName = fileName;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder version(final String version) {
|
this.version = version;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder suffix(final String suffix) {
|
this.suffix = suffix;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder sourceTypeDesc(final String sourceTypeDesc) {
|
this.sourceTypeDesc = sourceTypeDesc;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder operationType(final Integer operationType) {
|
this.operationType = operationType;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder operationTypeDesc(final String operationTypeDesc) {
|
this.operationTypeDesc = operationTypeDesc;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder sourcePathName(final String sourcePathName) {
|
this.sourcePathName = sourcePathName;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder targetPathName(final String targetPathName) {
|
this.targetPathName = targetPathName;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder storageSpace(final Integer storageSpace) {
|
this.storageSpace = storageSpace;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder storageSpaceDec(final String storageSpaceDec) {
|
this.storageSpaceDec = storageSpaceDec;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder fileLocation(final Integer fileLocation) {
|
this.fileLocation = fileLocation;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder fileLocationDesc(final String fileLocationDesc) {
|
this.fileLocationDesc = fileLocationDesc;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder operatorName(final String operatorName) {
|
this.operatorName = operatorName;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder operationTime(final Date operationTime) {
|
this.operationTime = operationTime;
|
return this;
|
}
|
|
public DncLogExcelVOBuilder sourceType(final Integer sourceType) {
|
this.sourceType = sourceType;
|
return this;
|
}
|
|
public DncLogExcelVO build() {
|
return new DncLogExcelVO(this.fileName, this.version, this.suffix, this.sourceTypeDesc, this.operationType, this.operationTypeDesc, this.sourcePathName, this.targetPathName, this.storageSpace, this.storageSpaceDec, this.fileLocation, this.fileLocationDesc, this.operatorName, this.operationTime, this.sourceType);
|
}
|
|
public String toString() {
|
return "DncLogExcelVO.DncLogExcelVOBuilder(fileName=" + this.fileName + ", version=" + this.version + ", suffix=" + this.suffix + ", sourceTypeDesc=" + this.sourceTypeDesc + ", operationType=" + this.operationType + ", operationTypeDesc=" + this.operationTypeDesc + ", sourcePathName=" + this.sourcePathName + ", targetPathName=" + this.targetPathName + ", storageSpace=" + this.storageSpace + ", storageSpaceDec=" + this.storageSpaceDec + ", fileLocation=" + this.fileLocation + ", fileLocationDesc=" + this.fileLocationDesc + ", operatorName=" + this.operatorName + ", operationTime=" + this.operationTime + ", sourceType=" + this.sourceType + ")";
|
}
|
}
|
|
DncLogExcelVO(final String fileName, final String version, final String suffix, final String sourceTypeDesc, final Integer operationType, final String operationTypeDesc, final String sourcePathName, final String targetPathName, final Integer storageSpace, final String storageSpaceDec, final Integer fileLocation, final String fileLocationDesc, final String operatorName, final Date operationTime, final Integer sourceType) {
|
this.fileName = fileName;
|
this.version = version;
|
this.suffix = suffix;
|
this.sourceTypeDesc = sourceTypeDesc;
|
this.operationType = operationType;
|
this.operationTypeDesc = operationTypeDesc;
|
this.sourcePathName = sourcePathName;
|
this.targetPathName = targetPathName;
|
this.storageSpace = storageSpace;
|
this.storageSpaceDec = storageSpaceDec;
|
this.fileLocation = fileLocation;
|
this.fileLocationDesc = fileLocationDesc;
|
this.operatorName = operatorName;
|
this.operationTime = operationTime;
|
this.sourceType = sourceType;
|
}
|
|
public static DncLogExcelVOBuilder builder() {
|
return new DncLogExcelVOBuilder();
|
}
|
|
public String getFileName() {
|
return this.fileName;
|
}
|
|
public String getVersion() {
|
return this.version;
|
}
|
|
public String getSuffix() {
|
return this.suffix;
|
}
|
|
public String getSourceTypeDesc() {
|
return this.sourceTypeDesc;
|
}
|
|
public Integer getOperationType() {
|
return this.operationType;
|
}
|
|
public String getOperationTypeDesc() {
|
return this.operationTypeDesc;
|
}
|
|
public String getSourcePathName() {
|
return this.sourcePathName;
|
}
|
|
public String getTargetPathName() {
|
return this.targetPathName;
|
}
|
|
public Integer getStorageSpace() {
|
return this.storageSpace;
|
}
|
|
public String getStorageSpaceDec() {
|
return this.storageSpaceDec;
|
}
|
|
public Integer getFileLocation() {
|
return this.fileLocation;
|
}
|
|
public String getFileLocationDesc() {
|
return this.fileLocationDesc;
|
}
|
|
public String getOperatorName() {
|
return this.operatorName;
|
}
|
|
public Date getOperationTime() {
|
return this.operationTime;
|
}
|
|
public Integer getSourceType() {
|
return this.sourceType;
|
}
|
}
|