package com.qianwen.smartman.modules.dnc.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import javax.validation.constraints.NotBlank;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/VerifyArchiveFileCheckVO.class */
|
public class VerifyArchiveFileCheckVO {
|
@NotBlank(message = "工位id必传")
|
@ApiModelProperty("工位id")
|
private String workstationId;
|
@NotBlank(message = "文件名称不能为空")
|
@ApiModelProperty("文件名称")
|
private String filename;
|
@ApiModelProperty("objectKey")
|
private String objectKey;
|
@ApiModelProperty("文件md5值")
|
private String contentMd5;
|
|
public void setWorkstationId(final String workstationId) {
|
this.workstationId = workstationId;
|
}
|
|
public void setFilename(final String filename) {
|
this.filename = filename;
|
}
|
|
public void setObjectKey(final String objectKey) {
|
this.objectKey = objectKey;
|
}
|
|
public void setContentMd5(final String contentMd5) {
|
this.contentMd5 = contentMd5;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof VerifyArchiveFileCheckVO) {
|
VerifyArchiveFileCheckVO other = (VerifyArchiveFileCheckVO) o;
|
if (other.canEqual(this)) {
|
Object this$workstationId = getWorkstationId();
|
Object other$workstationId = other.getWorkstationId();
|
if (this$workstationId == null) {
|
if (other$workstationId != null) {
|
return false;
|
}
|
} else if (!this$workstationId.equals(other$workstationId)) {
|
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$objectKey = getObjectKey();
|
Object other$objectKey = other.getObjectKey();
|
if (this$objectKey == null) {
|
if (other$objectKey != null) {
|
return false;
|
}
|
} else if (!this$objectKey.equals(other$objectKey)) {
|
return false;
|
}
|
Object this$contentMd5 = getContentMd5();
|
Object other$contentMd5 = other.getContentMd5();
|
return this$contentMd5 == null ? other$contentMd5 == null : this$contentMd5.equals(other$contentMd5);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof VerifyArchiveFileCheckVO;
|
}
|
|
public int hashCode() {
|
Object $workstationId = getWorkstationId();
|
int result = (1 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
|
Object $filename = getFilename();
|
int result2 = (result * 59) + ($filename == null ? 43 : $filename.hashCode());
|
Object $objectKey = getObjectKey();
|
int result3 = (result2 * 59) + ($objectKey == null ? 43 : $objectKey.hashCode());
|
Object $contentMd5 = getContentMd5();
|
return (result3 * 59) + ($contentMd5 == null ? 43 : $contentMd5.hashCode());
|
}
|
|
public String toString() {
|
return "VerifyArchiveFileCheckVO(workstationId=" + getWorkstationId() + ", filename=" + getFilename() + ", objectKey=" + getObjectKey() + ", contentMd5=" + getContentMd5() + ")";
|
}
|
|
public String getWorkstationId() {
|
return this.workstationId;
|
}
|
|
public String getFilename() {
|
return this.filename;
|
}
|
|
public String getObjectKey() {
|
return this.objectKey;
|
}
|
|
public String getContentMd5() {
|
return this.contentMd5;
|
}
|
}
|