package com.qianwen.smartman.modules.coproduction.dto; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/PlanProductTypeDTO.class */ public class PlanProductTypeDTO { private String productId; private String productTypeName; public void setProductId(final String productId) { this.productId = productId; } public void setProductTypeName(final String productTypeName) { this.productTypeName = productTypeName; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof PlanProductTypeDTO) { PlanProductTypeDTO other = (PlanProductTypeDTO) o; if (other.canEqual(this)) { 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$productTypeName = getProductTypeName(); Object other$productTypeName = other.getProductTypeName(); return this$productTypeName == null ? other$productTypeName == null : this$productTypeName.equals(other$productTypeName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof PlanProductTypeDTO; } public int hashCode() { Object $productId = getProductId(); int result = (1 * 59) + ($productId == null ? 43 : $productId.hashCode()); Object $productTypeName = getProductTypeName(); return (result * 59) + ($productTypeName == null ? 43 : $productTypeName.hashCode()); } public String toString() { return "PlanProductTypeDTO(productId=" + getProductId() + ", productTypeName=" + getProductTypeName() + ")"; } public String getProductId() { return this.productId; } public String getProductTypeName() { return this.productTypeName; } }