package com.qianwen.smartman.modules.sync.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.Date;
|
import javax.validation.constraints.Size;
|
|
@ApiModel(value = "OuterAppConfigVo对象", description = "blade_outer_app_config")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/vo/OuterAppConfigVO.class */
|
public class OuterAppConfigVO implements Serializable {
|
@ApiModelProperty("企业微信企业corpId")
|
@Size(max = 255, message = "企业微信企业corpId长度不能超过255")
|
private String wxCorpId;
|
@ApiModelProperty("企业微信应用secret")
|
@Size(max = 255, message = "企业微信应用secret长度不能超过255")
|
private String wxAppSecret;
|
@ApiModelProperty("企业微信通讯录secret")
|
@Size(max = 255, message = "企业微信通讯录secret长度不能超过255")
|
private String wxBookSecret;
|
@ApiModelProperty("企业微信回调配置token")
|
@Size(max = 255, message = "企业微信回调配置token长度不能超过255")
|
private String wxCallbackToken;
|
@ApiModelProperty("企业微信应用的AgentId")
|
@Size(max = 255, message = "企业微信AgentId长度不能超过255")
|
private String wxAgentId;
|
@ApiModelProperty("企业微信回调配置加解密aes_key")
|
@Size(max = 255, message = "企业微信回调配置加解密aes_key长度不能超过255")
|
private String wxAesKey;
|
@ApiModelProperty("钉钉应用key")
|
@Size(max = 255, message = "钉钉应用key长度不能超过255")
|
private String dingAppKey;
|
@ApiModelProperty("钉钉应用secret")
|
@Size(max = 255, message = "钉钉应用secret长度不能超过255")
|
private String dingAppSecret;
|
@ApiModelProperty("钉钉加解密aes_key")
|
@Size(max = 255, message = "钉钉加解密aes_key长度不能超过255")
|
private String dingAesKey;
|
@ApiModelProperty("钉钉回调token")
|
@Size(max = 255, message = "钉钉回调token长度不能超过255")
|
private String dingCallbackToken;
|
@ApiModelProperty("钉钉企业corpId")
|
@Size(max = 255, message = "钉钉企业corpId长度不能超过255")
|
private String dingCorpId;
|
@ApiModelProperty("钉钉应用AgentId")
|
@Size(max = 255, message = "钉钉应用AgentId长度不能超过255")
|
private String dingAgentId;
|
@ApiModelProperty("应用类型 1企业微信 2钉钉")
|
private Integer appType;
|
@ApiModelProperty("备注/说明")
|
@Size(max = 255, message = "备注/说明长度不能超过255")
|
private String remark;
|
private Long id;
|
@ApiModelProperty("状态")
|
private Integer status;
|
@ApiModelProperty("上次同步时间")
|
private Date lastSyncTime;
|
@ApiModelProperty("企业微信第三方回调域名")
|
private String wxDomain;
|
@ApiModelProperty("钉钉第三方回调域名")
|
private String dingDomain;
|
@ApiModelProperty("第三方回调域名")
|
private String domain;
|
|
public void setWxCorpId(final String wxCorpId) {
|
this.wxCorpId = wxCorpId;
|
}
|
|
public void setWxAppSecret(final String wxAppSecret) {
|
this.wxAppSecret = wxAppSecret;
|
}
|
|
public void setWxBookSecret(final String wxBookSecret) {
|
this.wxBookSecret = wxBookSecret;
|
}
|
|
public void setWxCallbackToken(final String wxCallbackToken) {
|
this.wxCallbackToken = wxCallbackToken;
|
}
|
|
public void setWxAgentId(final String wxAgentId) {
|
this.wxAgentId = wxAgentId;
|
}
|
|
public void setWxAesKey(final String wxAesKey) {
|
this.wxAesKey = wxAesKey;
|
}
|
|
public void setDingAppKey(final String dingAppKey) {
|
this.dingAppKey = dingAppKey;
|
}
|
|
public void setDingAppSecret(final String dingAppSecret) {
|
this.dingAppSecret = dingAppSecret;
|
}
|
|
public void setDingAesKey(final String dingAesKey) {
|
this.dingAesKey = dingAesKey;
|
}
|
|
public void setDingCallbackToken(final String dingCallbackToken) {
|
this.dingCallbackToken = dingCallbackToken;
|
}
|
|
public void setDingCorpId(final String dingCorpId) {
|
this.dingCorpId = dingCorpId;
|
}
|
|
public void setDingAgentId(final String dingAgentId) {
|
this.dingAgentId = dingAgentId;
|
}
|
|
public void setAppType(final Integer appType) {
|
this.appType = appType;
|
}
|
|
public void setRemark(final String remark) {
|
this.remark = remark;
|
}
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public void setStatus(final Integer status) {
|
this.status = status;
|
}
|
|
public void setLastSyncTime(final Date lastSyncTime) {
|
this.lastSyncTime = lastSyncTime;
|
}
|
|
public void setWxDomain(final String wxDomain) {
|
this.wxDomain = wxDomain;
|
}
|
|
public void setDingDomain(final String dingDomain) {
|
this.dingDomain = dingDomain;
|
}
|
|
public void setDomain(final String domain) {
|
this.domain = domain;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof OuterAppConfigVO) {
|
OuterAppConfigVO other = (OuterAppConfigVO) o;
|
if (other.canEqual(this)) {
|
Object this$appType = getAppType();
|
Object other$appType = other.getAppType();
|
if (this$appType == null) {
|
if (other$appType != null) {
|
return false;
|
}
|
} else if (!this$appType.equals(other$appType)) {
|
return false;
|
}
|
Object this$id = getId();
|
Object other$id = other.getId();
|
if (this$id == null) {
|
if (other$id != null) {
|
return false;
|
}
|
} else if (!this$id.equals(other$id)) {
|
return false;
|
}
|
Object this$status = getStatus();
|
Object other$status = other.getStatus();
|
if (this$status == null) {
|
if (other$status != null) {
|
return false;
|
}
|
} else if (!this$status.equals(other$status)) {
|
return false;
|
}
|
Object this$wxCorpId = getWxCorpId();
|
Object other$wxCorpId = other.getWxCorpId();
|
if (this$wxCorpId == null) {
|
if (other$wxCorpId != null) {
|
return false;
|
}
|
} else if (!this$wxCorpId.equals(other$wxCorpId)) {
|
return false;
|
}
|
Object this$wxAppSecret = getWxAppSecret();
|
Object other$wxAppSecret = other.getWxAppSecret();
|
if (this$wxAppSecret == null) {
|
if (other$wxAppSecret != null) {
|
return false;
|
}
|
} else if (!this$wxAppSecret.equals(other$wxAppSecret)) {
|
return false;
|
}
|
Object this$wxBookSecret = getWxBookSecret();
|
Object other$wxBookSecret = other.getWxBookSecret();
|
if (this$wxBookSecret == null) {
|
if (other$wxBookSecret != null) {
|
return false;
|
}
|
} else if (!this$wxBookSecret.equals(other$wxBookSecret)) {
|
return false;
|
}
|
Object this$wxCallbackToken = getWxCallbackToken();
|
Object other$wxCallbackToken = other.getWxCallbackToken();
|
if (this$wxCallbackToken == null) {
|
if (other$wxCallbackToken != null) {
|
return false;
|
}
|
} else if (!this$wxCallbackToken.equals(other$wxCallbackToken)) {
|
return false;
|
}
|
Object this$wxAgentId = getWxAgentId();
|
Object other$wxAgentId = other.getWxAgentId();
|
if (this$wxAgentId == null) {
|
if (other$wxAgentId != null) {
|
return false;
|
}
|
} else if (!this$wxAgentId.equals(other$wxAgentId)) {
|
return false;
|
}
|
Object this$wxAesKey = getWxAesKey();
|
Object other$wxAesKey = other.getWxAesKey();
|
if (this$wxAesKey == null) {
|
if (other$wxAesKey != null) {
|
return false;
|
}
|
} else if (!this$wxAesKey.equals(other$wxAesKey)) {
|
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$dingAppSecret = getDingAppSecret();
|
Object other$dingAppSecret = other.getDingAppSecret();
|
if (this$dingAppSecret == null) {
|
if (other$dingAppSecret != null) {
|
return false;
|
}
|
} else if (!this$dingAppSecret.equals(other$dingAppSecret)) {
|
return false;
|
}
|
Object this$dingAesKey = getDingAesKey();
|
Object other$dingAesKey = other.getDingAesKey();
|
if (this$dingAesKey == null) {
|
if (other$dingAesKey != null) {
|
return false;
|
}
|
} else if (!this$dingAesKey.equals(other$dingAesKey)) {
|
return false;
|
}
|
Object this$dingCallbackToken = getDingCallbackToken();
|
Object other$dingCallbackToken = other.getDingCallbackToken();
|
if (this$dingCallbackToken == null) {
|
if (other$dingCallbackToken != null) {
|
return false;
|
}
|
} else if (!this$dingCallbackToken.equals(other$dingCallbackToken)) {
|
return false;
|
}
|
Object this$dingCorpId = getDingCorpId();
|
Object other$dingCorpId = other.getDingCorpId();
|
if (this$dingCorpId == null) {
|
if (other$dingCorpId != null) {
|
return false;
|
}
|
} else if (!this$dingCorpId.equals(other$dingCorpId)) {
|
return false;
|
}
|
Object this$dingAgentId = getDingAgentId();
|
Object other$dingAgentId = other.getDingAgentId();
|
if (this$dingAgentId == null) {
|
if (other$dingAgentId != null) {
|
return false;
|
}
|
} else if (!this$dingAgentId.equals(other$dingAgentId)) {
|
return false;
|
}
|
Object this$remark = getRemark();
|
Object other$remark = other.getRemark();
|
if (this$remark == null) {
|
if (other$remark != null) {
|
return false;
|
}
|
} else if (!this$remark.equals(other$remark)) {
|
return false;
|
}
|
Object this$lastSyncTime = getLastSyncTime();
|
Object other$lastSyncTime = other.getLastSyncTime();
|
if (this$lastSyncTime == null) {
|
if (other$lastSyncTime != null) {
|
return false;
|
}
|
} else if (!this$lastSyncTime.equals(other$lastSyncTime)) {
|
return false;
|
}
|
Object this$wxDomain = getWxDomain();
|
Object other$wxDomain = other.getWxDomain();
|
if (this$wxDomain == null) {
|
if (other$wxDomain != null) {
|
return false;
|
}
|
} else if (!this$wxDomain.equals(other$wxDomain)) {
|
return false;
|
}
|
Object this$dingDomain = getDingDomain();
|
Object other$dingDomain = other.getDingDomain();
|
if (this$dingDomain == null) {
|
if (other$dingDomain != null) {
|
return false;
|
}
|
} else if (!this$dingDomain.equals(other$dingDomain)) {
|
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 OuterAppConfigVO;
|
}
|
|
public int hashCode() {
|
Object $appType = getAppType();
|
int result = (1 * 59) + ($appType == null ? 43 : $appType.hashCode());
|
Object $id = getId();
|
int result2 = (result * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $status = getStatus();
|
int result3 = (result2 * 59) + ($status == null ? 43 : $status.hashCode());
|
Object $wxCorpId = getWxCorpId();
|
int result4 = (result3 * 59) + ($wxCorpId == null ? 43 : $wxCorpId.hashCode());
|
Object $wxAppSecret = getWxAppSecret();
|
int result5 = (result4 * 59) + ($wxAppSecret == null ? 43 : $wxAppSecret.hashCode());
|
Object $wxBookSecret = getWxBookSecret();
|
int result6 = (result5 * 59) + ($wxBookSecret == null ? 43 : $wxBookSecret.hashCode());
|
Object $wxCallbackToken = getWxCallbackToken();
|
int result7 = (result6 * 59) + ($wxCallbackToken == null ? 43 : $wxCallbackToken.hashCode());
|
Object $wxAgentId = getWxAgentId();
|
int result8 = (result7 * 59) + ($wxAgentId == null ? 43 : $wxAgentId.hashCode());
|
Object $wxAesKey = getWxAesKey();
|
int result9 = (result8 * 59) + ($wxAesKey == null ? 43 : $wxAesKey.hashCode());
|
Object $dingAppKey = getDingAppKey();
|
int result10 = (result9 * 59) + ($dingAppKey == null ? 43 : $dingAppKey.hashCode());
|
Object $dingAppSecret = getDingAppSecret();
|
int result11 = (result10 * 59) + ($dingAppSecret == null ? 43 : $dingAppSecret.hashCode());
|
Object $dingAesKey = getDingAesKey();
|
int result12 = (result11 * 59) + ($dingAesKey == null ? 43 : $dingAesKey.hashCode());
|
Object $dingCallbackToken = getDingCallbackToken();
|
int result13 = (result12 * 59) + ($dingCallbackToken == null ? 43 : $dingCallbackToken.hashCode());
|
Object $dingCorpId = getDingCorpId();
|
int result14 = (result13 * 59) + ($dingCorpId == null ? 43 : $dingCorpId.hashCode());
|
Object $dingAgentId = getDingAgentId();
|
int result15 = (result14 * 59) + ($dingAgentId == null ? 43 : $dingAgentId.hashCode());
|
Object $remark = getRemark();
|
int result16 = (result15 * 59) + ($remark == null ? 43 : $remark.hashCode());
|
Object $lastSyncTime = getLastSyncTime();
|
int result17 = (result16 * 59) + ($lastSyncTime == null ? 43 : $lastSyncTime.hashCode());
|
Object $wxDomain = getWxDomain();
|
int result18 = (result17 * 59) + ($wxDomain == null ? 43 : $wxDomain.hashCode());
|
Object $dingDomain = getDingDomain();
|
int result19 = (result18 * 59) + ($dingDomain == null ? 43 : $dingDomain.hashCode());
|
Object $domain = getDomain();
|
return (result19 * 59) + ($domain == null ? 43 : $domain.hashCode());
|
}
|
|
public String toString() {
|
return "OuterAppConfigVO(wxCorpId=" + getWxCorpId() + ", wxAppSecret=" + getWxAppSecret() + ", wxBookSecret=" + getWxBookSecret() + ", wxCallbackToken=" + getWxCallbackToken() + ", wxAgentId=" + getWxAgentId() + ", wxAesKey=" + getWxAesKey() + ", dingAppKey=" + getDingAppKey() + ", dingAppSecret=" + getDingAppSecret() + ", dingAesKey=" + getDingAesKey() + ", dingCallbackToken=" + getDingCallbackToken() + ", dingCorpId=" + getDingCorpId() + ", dingAgentId=" + getDingAgentId() + ", appType=" + getAppType() + ", remark=" + getRemark() + ", id=" + getId() + ", status=" + getStatus() + ", lastSyncTime=" + getLastSyncTime() + ", wxDomain=" + getWxDomain() + ", dingDomain=" + getDingDomain() + ", domain=" + getDomain() + ")";
|
}
|
|
public String getWxCorpId() {
|
return this.wxCorpId;
|
}
|
|
public String getWxAppSecret() {
|
return this.wxAppSecret;
|
}
|
|
public String getWxBookSecret() {
|
return this.wxBookSecret;
|
}
|
|
public String getWxCallbackToken() {
|
return this.wxCallbackToken;
|
}
|
|
public String getWxAgentId() {
|
return this.wxAgentId;
|
}
|
|
public String getWxAesKey() {
|
return this.wxAesKey;
|
}
|
|
public String getDingAppKey() {
|
return this.dingAppKey;
|
}
|
|
public String getDingAppSecret() {
|
return this.dingAppSecret;
|
}
|
|
public String getDingAesKey() {
|
return this.dingAesKey;
|
}
|
|
public String getDingCallbackToken() {
|
return this.dingCallbackToken;
|
}
|
|
public String getDingCorpId() {
|
return this.dingCorpId;
|
}
|
|
public String getDingAgentId() {
|
return this.dingAgentId;
|
}
|
|
public Integer getAppType() {
|
return this.appType;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
|
public Date getLastSyncTime() {
|
return this.lastSyncTime;
|
}
|
|
public String getWxDomain() {
|
return this.wxDomain;
|
}
|
|
public String getDingDomain() {
|
return this.dingDomain;
|
}
|
|
public String getDomain() {
|
return this.domain;
|
}
|
}
|