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