yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
    }
}