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