yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.qianwen.smartman.modules.notify.api;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/api/DingTalkConfig.class */
public class DingTalkConfig {
    private String appkey;
    private String appsecret;
    private String corpid;
    private String corpsecret;
 
    public void setAppkey(final String appkey) {
        this.appkey = appkey;
    }
 
    public void setAppsecret(final String appsecret) {
        this.appsecret = appsecret;
    }
 
    public void setCorpid(final String corpid) {
        this.corpid = corpid;
    }
 
    public void setCorpsecret(final String corpsecret) {
        this.corpsecret = corpsecret;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DingTalkConfig) {
            DingTalkConfig other = (DingTalkConfig) o;
            if (other.canEqual(this)) {
                Object this$appkey = getAppkey();
                Object other$appkey = other.getAppkey();
                if (this$appkey == null) {
                    if (other$appkey != null) {
                        return false;
                    }
                } else if (!this$appkey.equals(other$appkey)) {
                    return false;
                }
                Object this$appsecret = getAppsecret();
                Object other$appsecret = other.getAppsecret();
                if (this$appsecret == null) {
                    if (other$appsecret != null) {
                        return false;
                    }
                } else if (!this$appsecret.equals(other$appsecret)) {
                    return false;
                }
                Object this$corpid = getCorpid();
                Object other$corpid = other.getCorpid();
                if (this$corpid == null) {
                    if (other$corpid != null) {
                        return false;
                    }
                } else if (!this$corpid.equals(other$corpid)) {
                    return false;
                }
                Object this$corpsecret = getCorpsecret();
                Object other$corpsecret = other.getCorpsecret();
                return this$corpsecret == null ? other$corpsecret == null : this$corpsecret.equals(other$corpsecret);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DingTalkConfig;
    }
 
    public int hashCode() {
        Object $appkey = getAppkey();
        int result = (1 * 59) + ($appkey == null ? 43 : $appkey.hashCode());
        Object $appsecret = getAppsecret();
        int result2 = (result * 59) + ($appsecret == null ? 43 : $appsecret.hashCode());
        Object $corpid = getCorpid();
        int result3 = (result2 * 59) + ($corpid == null ? 43 : $corpid.hashCode());
        Object $corpsecret = getCorpsecret();
        return (result3 * 59) + ($corpsecret == null ? 43 : $corpsecret.hashCode());
    }
 
    public String toString() {
        return "DingTalkConfig(appkey=" + getAppkey() + ", appsecret=" + getAppsecret() + ", corpid=" + getCorpid() + ", corpsecret=" + getCorpsecret() + ")";
    }
 
    public String getAppkey() {
        return this.appkey;
    }
 
    public String getAppsecret() {
        return this.appsecret;
    }
 
    public String getCorpid() {
        return this.corpid;
    }
 
    public String getCorpsecret() {
        return this.corpsecret;
    }
}