package com.qianwen.smartman.modules.system.dto; import com.qianwen.smartman.modules.system.entity.Role; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/RoleDTO.class */ public class RoleDTO extends Role { private static final long serialVersionUID = 1; @Override // org.springblade.modules.system.entity.Role public String toString() { return "RoleDTO()"; } @Override // org.springblade.modules.system.entity.Role public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RoleDTO) { RoleDTO other = (RoleDTO) o; return other.canEqual(this) && super.equals(o); } return false; } @Override // org.springblade.modules.system.entity.Role protected boolean canEqual(final Object other) { return other instanceof RoleDTO; } @Override // org.springblade.modules.system.entity.Role public int hashCode() { int result = super.hashCode(); return result; } }