package com.qianwen.smartman.modules.coproduction.vo; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanImportVO.class */ public class PlanImportVO { private String code; private String categoryLabel; private String craftId; private String craftVersion; private String planNum; private String planStartTime; private String planEndTime; private String indentCode; private String standardModel; private String bomVersion; private String productId; private String typeId; public void setCode(final String code) { this.code = code; } public void setCategoryLabel(final String categoryLabel) { this.categoryLabel = categoryLabel; } public void setCraftId(final String craftId) { this.craftId = craftId; } public void setCraftVersion(final String craftVersion) { this.craftVersion = craftVersion; } public void setPlanNum(final String planNum) { this.planNum = planNum; } public void setPlanStartTime(final String planStartTime) { this.planStartTime = planStartTime; } public void setPlanEndTime(final String planEndTime) { this.planEndTime = planEndTime; } public void setIndentCode(final String indentCode) { this.indentCode = indentCode; } public void setStandardModel(final String standardModel) { this.standardModel = standardModel; } public void setBomVersion(final String bomVersion) { this.bomVersion = bomVersion; } public void setProductId(final String productId) { this.productId = productId; } public void setTypeId(final String typeId) { this.typeId = typeId; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof PlanImportVO) { PlanImportVO other = (PlanImportVO) o; if (other.canEqual(this)) { Object this$code = getCode(); Object other$code = other.getCode(); if (this$code == null) { if (other$code != null) { return false; } } else if (!this$code.equals(other$code)) { return false; } Object this$categoryLabel = getCategoryLabel(); Object other$categoryLabel = other.getCategoryLabel(); if (this$categoryLabel == null) { if (other$categoryLabel != null) { return false; } } else if (!this$categoryLabel.equals(other$categoryLabel)) { return false; } Object this$craftId = getCraftId(); Object other$craftId = other.getCraftId(); if (this$craftId == null) { if (other$craftId != null) { return false; } } else if (!this$craftId.equals(other$craftId)) { return false; } Object this$craftVersion = getCraftVersion(); Object other$craftVersion = other.getCraftVersion(); if (this$craftVersion == null) { if (other$craftVersion != null) { return false; } } else if (!this$craftVersion.equals(other$craftVersion)) { return false; } Object this$planNum = getPlanNum(); Object other$planNum = other.getPlanNum(); if (this$planNum == null) { if (other$planNum != null) { return false; } } else if (!this$planNum.equals(other$planNum)) { return false; } Object this$planStartTime = getPlanStartTime(); Object other$planStartTime = other.getPlanStartTime(); if (this$planStartTime == null) { if (other$planStartTime != null) { return false; } } else if (!this$planStartTime.equals(other$planStartTime)) { return false; } Object this$planEndTime = getPlanEndTime(); Object other$planEndTime = other.getPlanEndTime(); if (this$planEndTime == null) { if (other$planEndTime != null) { return false; } } else if (!this$planEndTime.equals(other$planEndTime)) { return false; } Object this$indentCode = getIndentCode(); Object other$indentCode = other.getIndentCode(); if (this$indentCode == null) { if (other$indentCode != null) { return false; } } else if (!this$indentCode.equals(other$indentCode)) { return false; } Object this$standardModel = getStandardModel(); Object other$standardModel = other.getStandardModel(); if (this$standardModel == null) { if (other$standardModel != null) { return false; } } else if (!this$standardModel.equals(other$standardModel)) { return false; } Object this$bomVersion = getBomVersion(); Object other$bomVersion = other.getBomVersion(); if (this$bomVersion == null) { if (other$bomVersion != null) { return false; } } else if (!this$bomVersion.equals(other$bomVersion)) { return false; } Object this$productId = getProductId(); Object other$productId = other.getProductId(); if (this$productId == null) { if (other$productId != null) { return false; } } else if (!this$productId.equals(other$productId)) { return false; } Object this$typeId = getTypeId(); Object other$typeId = other.getTypeId(); return this$typeId == null ? other$typeId == null : this$typeId.equals(other$typeId); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof PlanImportVO; } public int hashCode() { Object $code = getCode(); int result = (1 * 59) + ($code == null ? 43 : $code.hashCode()); Object $categoryLabel = getCategoryLabel(); int result2 = (result * 59) + ($categoryLabel == null ? 43 : $categoryLabel.hashCode()); Object $craftId = getCraftId(); int result3 = (result2 * 59) + ($craftId == null ? 43 : $craftId.hashCode()); Object $craftVersion = getCraftVersion(); int result4 = (result3 * 59) + ($craftVersion == null ? 43 : $craftVersion.hashCode()); Object $planNum = getPlanNum(); int result5 = (result4 * 59) + ($planNum == null ? 43 : $planNum.hashCode()); Object $planStartTime = getPlanStartTime(); int result6 = (result5 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode()); Object $planEndTime = getPlanEndTime(); int result7 = (result6 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode()); Object $indentCode = getIndentCode(); int result8 = (result7 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode()); Object $standardModel = getStandardModel(); int result9 = (result8 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode()); Object $bomVersion = getBomVersion(); int result10 = (result9 * 59) + ($bomVersion == null ? 43 : $bomVersion.hashCode()); Object $productId = getProductId(); int result11 = (result10 * 59) + ($productId == null ? 43 : $productId.hashCode()); Object $typeId = getTypeId(); return (result11 * 59) + ($typeId == null ? 43 : $typeId.hashCode()); } public String toString() { return "PlanImportVO(code=" + getCode() + ", categoryLabel=" + getCategoryLabel() + ", craftId=" + getCraftId() + ", craftVersion=" + getCraftVersion() + ", planNum=" + getPlanNum() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", indentCode=" + getIndentCode() + ", standardModel=" + getStandardModel() + ", bomVersion=" + getBomVersion() + ", productId=" + getProductId() + ", typeId=" + getTypeId() + ")"; } public String getCode() { return this.code; } public String getCategoryLabel() { return this.categoryLabel; } public String getCraftId() { return this.craftId; } public String getCraftVersion() { return this.craftVersion; } public String getPlanNum() { return this.planNum; } public String getPlanStartTime() { return this.planStartTime; } public String getPlanEndTime() { return this.planEndTime; } public String getIndentCode() { return this.indentCode; } public String getStandardModel() { return this.standardModel; } public String getBomVersion() { return this.bomVersion; } public String getProductId() { return this.productId; } public String getTypeId() { return this.typeId; } }