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
104
105
106
107
108
109
110
111
112
package com.qianwen.smartman.modules.sync.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
@ApiModel(value = "OuterAppStatusVO对象", description = "用于首页第三方应用判断")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/vo/OuterAppStatusVO.class */
public class OuterAppStatusVO implements Serializable {
    @ApiModelProperty("是否开启钉钉")
    private Boolean dingStatus = false;
    @ApiModelProperty("是否开启企业微信")
    private Boolean wxStatus = false;
    @ApiModelProperty("钉钉appkey")
    private String dingAppkey;
    @ApiModelProperty("企业微信回调域名")
    private String domain;
 
    public void setDingStatus(final Boolean dingStatus) {
        this.dingStatus = dingStatus;
    }
 
    public void setWxStatus(final Boolean wxStatus) {
        this.wxStatus = wxStatus;
    }
 
    public void setDingAppkey(final String dingAppkey) {
        this.dingAppkey = dingAppkey;
    }
 
    public void setDomain(final String domain) {
        this.domain = domain;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof OuterAppStatusVO) {
            OuterAppStatusVO other = (OuterAppStatusVO) o;
            if (other.canEqual(this)) {
                Object this$dingStatus = getDingStatus();
                Object other$dingStatus = other.getDingStatus();
                if (this$dingStatus == null) {
                    if (other$dingStatus != null) {
                        return false;
                    }
                } else if (!this$dingStatus.equals(other$dingStatus)) {
                    return false;
                }
                Object this$wxStatus = getWxStatus();
                Object other$wxStatus = other.getWxStatus();
                if (this$wxStatus == null) {
                    if (other$wxStatus != null) {
                        return false;
                    }
                } else if (!this$wxStatus.equals(other$wxStatus)) {
                    return false;
                }
                Object this$dingAppkey = getDingAppkey();
                Object other$dingAppkey = other.getDingAppkey();
                if (this$dingAppkey == null) {
                    if (other$dingAppkey != null) {
                        return false;
                    }
                } else if (!this$dingAppkey.equals(other$dingAppkey)) {
                    return false;
                }
                Object this$domain = getDomain();
                Object other$domain = other.getDomain();
                return this$domain == null ? other$domain == null : this$domain.equals(other$domain);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof OuterAppStatusVO;
    }
 
    public int hashCode() {
        Object $dingStatus = getDingStatus();
        int result = (1 * 59) + ($dingStatus == null ? 43 : $dingStatus.hashCode());
        Object $wxStatus = getWxStatus();
        int result2 = (result * 59) + ($wxStatus == null ? 43 : $wxStatus.hashCode());
        Object $dingAppkey = getDingAppkey();
        int result3 = (result2 * 59) + ($dingAppkey == null ? 43 : $dingAppkey.hashCode());
        Object $domain = getDomain();
        return (result3 * 59) + ($domain == null ? 43 : $domain.hashCode());
    }
 
    public String toString() {
        return "OuterAppStatusVO(dingStatus=" + getDingStatus() + ", wxStatus=" + getWxStatus() + ", dingAppkey=" + getDingAppkey() + ", domain=" + getDomain() + ")";
    }
 
    public Boolean getDingStatus() {
        return this.dingStatus;
    }
 
    public Boolean getWxStatus() {
        return this.wxStatus;
    }
 
    public String getDingAppkey() {
        return this.dingAppkey;
    }
 
    public String getDomain() {
        return this.domain;
    }
}