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