package com.qianwen.smartman.modules.cps.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/ProcessParallelVO.class */ public class ProcessParallelVO implements Serializable { private static final long serialVersionUID = 7119647909467963306L; @ApiModelProperty("版本工序id ") private Long versionProcessId; @ApiModelProperty("工序id") private Long processId; @ApiModelProperty("工序编号") private String processCode; @ApiModelProperty("工序名称") private String processName; @ApiModelProperty("工序类型") private Integer processType; public void setVersionProcessId(final Long versionProcessId) { this.versionProcessId = versionProcessId; } public void setProcessId(final Long processId) { this.processId = processId; } public void setProcessCode(final String processCode) { this.processCode = processCode; } public void setProcessName(final String processName) { this.processName = processName; } public void setProcessType(final Integer processType) { this.processType = processType; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ProcessParallelVO) { ProcessParallelVO other = (ProcessParallelVO) o; if (other.canEqual(this)) { Object this$versionProcessId = getVersionProcessId(); Object other$versionProcessId = other.getVersionProcessId(); if (this$versionProcessId == null) { if (other$versionProcessId != null) { return false; } } else if (!this$versionProcessId.equals(other$versionProcessId)) { return false; } Object this$processId = getProcessId(); Object other$processId = other.getProcessId(); if (this$processId == null) { if (other$processId != null) { return false; } } else if (!this$processId.equals(other$processId)) { return false; } Object this$processType = getProcessType(); Object other$processType = other.getProcessType(); if (this$processType == null) { if (other$processType != null) { return false; } } else if (!this$processType.equals(other$processType)) { return false; } Object this$processCode = getProcessCode(); Object other$processCode = other.getProcessCode(); if (this$processCode == null) { if (other$processCode != null) { return false; } } else if (!this$processCode.equals(other$processCode)) { return false; } Object this$processName = getProcessName(); Object other$processName = other.getProcessName(); return this$processName == null ? other$processName == null : this$processName.equals(other$processName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof ProcessParallelVO; } public int hashCode() { Object $versionProcessId = getVersionProcessId(); int result = (1 * 59) + ($versionProcessId == null ? 43 : $versionProcessId.hashCode()); Object $processId = getProcessId(); int result2 = (result * 59) + ($processId == null ? 43 : $processId.hashCode()); Object $processType = getProcessType(); int result3 = (result2 * 59) + ($processType == null ? 43 : $processType.hashCode()); Object $processCode = getProcessCode(); int result4 = (result3 * 59) + ($processCode == null ? 43 : $processCode.hashCode()); Object $processName = getProcessName(); return (result4 * 59) + ($processName == null ? 43 : $processName.hashCode()); } public String toString() { return "ProcessParallelVO(versionProcessId=" + getVersionProcessId() + ", processId=" + getProcessId() + ", processCode=" + getProcessCode() + ", processName=" + getProcessName() + ", processType=" + getProcessType() + ")"; } public Long getVersionProcessId() { return this.versionProcessId; } public Long getProcessId() { return this.processId; } public String getProcessCode() { return this.processCode; } public String getProcessName() { return this.processName; } public Integer getProcessType() { return this.processType; } }