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