package com.qianwen.smartman.modules.system.dto; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/MenuDTO.class */ public class MenuDTO implements Serializable { private static final long serialVersionUID = 1; private String alias; private String path; public void setAlias(final String alias) { this.alias = alias; } public void setPath(final String path) { this.path = path; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof MenuDTO) { MenuDTO other = (MenuDTO) o; if (other.canEqual(this)) { Object this$alias = getAlias(); Object other$alias = other.getAlias(); if (this$alias == null) { if (other$alias != null) { return false; } } else if (!this$alias.equals(other$alias)) { return false; } Object this$path = getPath(); Object other$path = other.getPath(); return this$path == null ? other$path == null : this$path.equals(other$path); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof MenuDTO; } public int hashCode() { Object $alias = getAlias(); int result = (1 * 59) + ($alias == null ? 43 : $alias.hashCode()); Object $path = getPath(); return (result * 59) + ($path == null ? 43 : $path.hashCode()); } public String toString() { return "MenuDTO(alias=" + getAlias() + ", path=" + getPath() + ")"; } public String getAlias() { return this.alias; } public String getPath() { return this.path; } }