package com.qianwen.smartman.modules.system.dto; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/LicenseModuleDTO.class */ public class LicenseModuleDTO { private String label; private int value; public void setLabel(final String label) { this.label = label; } public void setValue(final int value) { this.value = value; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof LicenseModuleDTO) { LicenseModuleDTO other = (LicenseModuleDTO) o; if (other.canEqual(this) && getValue() == other.getValue()) { Object this$label = getLabel(); Object other$label = other.getLabel(); return this$label == null ? other$label == null : this$label.equals(other$label); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof LicenseModuleDTO; } public int hashCode() { int result = (1 * 59) + getValue(); Object $label = getLabel(); return (result * 59) + ($label == null ? 43 : $label.hashCode()); } public String toString() { return "LicenseModuleDTO(label=" + getLabel() + ", value=" + getValue() + ")"; } public String getLabel() { return this.label; } public int getValue() { return this.value; } }