package com.qianwen.smartman.modules.notify.dto; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/BusinessNotifyStateDTO.class */ public class BusinessNotifyStateDTO { private Long personId; private Integer personType; private String name; public void setPersonId(final Long personId) { this.personId = personId; } public void setPersonType(final Integer personType) { this.personType = personType; } public void setName(final String name) { this.name = name; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof BusinessNotifyStateDTO) { BusinessNotifyStateDTO other = (BusinessNotifyStateDTO) o; if (other.canEqual(this)) { Object this$personId = getPersonId(); Object other$personId = other.getPersonId(); if (this$personId == null) { if (other$personId != null) { return false; } } else if (!this$personId.equals(other$personId)) { return false; } Object this$personType = getPersonType(); Object other$personType = other.getPersonType(); if (this$personType == null) { if (other$personType != null) { return false; } } else if (!this$personType.equals(other$personType)) { return false; } Object this$name = getName(); Object other$name = other.getName(); return this$name == null ? other$name == null : this$name.equals(other$name); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof BusinessNotifyStateDTO; } public int hashCode() { Object $personId = getPersonId(); int result = (1 * 59) + ($personId == null ? 43 : $personId.hashCode()); Object $personType = getPersonType(); int result2 = (result * 59) + ($personType == null ? 43 : $personType.hashCode()); Object $name = getName(); return (result2 * 59) + ($name == null ? 43 : $name.hashCode()); } public String toString() { return "BusinessNotifyStateDTO(personId=" + getPersonId() + ", personType=" + getPersonType() + ", name=" + getName() + ")"; } public Long getPersonId() { return this.personId; } public Integer getPersonType() { return this.personType; } public String getName() { return this.name; } }