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; } }