package com.qianwen.smartman.modules.notify.dto; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/NotifySendMethodDTO.class */ public class NotifySendMethodDTO { private String templateId; private String notifyId; private String notifyType; public void setTemplateId(final String templateId) { this.templateId = templateId; } public void setNotifyId(final String notifyId) { this.notifyId = notifyId; } public void setNotifyType(final String notifyType) { this.notifyType = notifyType; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof NotifySendMethodDTO) { NotifySendMethodDTO other = (NotifySendMethodDTO) o; if (other.canEqual(this)) { Object this$templateId = getTemplateId(); Object other$templateId = other.getTemplateId(); if (this$templateId == null) { if (other$templateId != null) { return false; } } else if (!this$templateId.equals(other$templateId)) { return false; } Object this$notifyId = getNotifyId(); Object other$notifyId = other.getNotifyId(); if (this$notifyId == null) { if (other$notifyId != null) { return false; } } else if (!this$notifyId.equals(other$notifyId)) { return false; } Object this$notifyType = getNotifyType(); Object other$notifyType = other.getNotifyType(); return this$notifyType == null ? other$notifyType == null : this$notifyType.equals(other$notifyType); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof NotifySendMethodDTO; } public int hashCode() { Object $templateId = getTemplateId(); int result = (1 * 59) + ($templateId == null ? 43 : $templateId.hashCode()); Object $notifyId = getNotifyId(); int result2 = (result * 59) + ($notifyId == null ? 43 : $notifyId.hashCode()); Object $notifyType = getNotifyType(); return (result2 * 59) + ($notifyType == null ? 43 : $notifyType.hashCode()); } public String toString() { return "NotifySendMethodDTO(templateId=" + getTemplateId() + ", notifyId=" + getNotifyId() + ", notifyType=" + getNotifyType() + ")"; } public String getTemplateId() { return this.templateId; } public String getNotifyId() { return this.notifyId; } public String getNotifyType() { return this.notifyType; } }