package com.qianwen.smartman.modules.dnc.dto; public class ArtBagFileNameProcessRule extends DefaultDncFileNameProcessRule implements DncFileNameProcessRule { public int selectProperty; public void setSelectProperty(final int selectProperty) { this.selectProperty = selectProperty; } @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof ArtBagFileNameProcessRule) { ArtBagFileNameProcessRule other = (ArtBagFileNameProcessRule) o; return other.canEqual(this) && getSelectProperty() == other.getSelectProperty(); } return false; } @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule protected boolean canEqual(final Object other) { return other instanceof ArtBagFileNameProcessRule; } @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule public int hashCode() { int result = (1 * 59) + getSelectProperty(); return result; } @Override // org.springblade.modules.dnc.dto.DefaultDncFileNameProcessRule public String toString() { return "ArtBagFileNameProcessRule(selectProperty=" + getSelectProperty() + ")"; } public int getSelectProperty() { return this.selectProperty; } }