yangys
2024-03-29 4b479381a65bd3ef526cb92631d3550f2aa17459
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
package com.qianwen.smartman.modules.sync.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
import com.qianwen.core.mp.base.BaseEntity;
 
@ApiModel(value = "OuterAppConfig对象", description = "blade_outer_app_config")
@TableName("blade_outer_app_config")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/OuterAppConfig.class */
public class OuterAppConfig extends BaseEntity {
    private static final long serialVersionUID = 1;
    @ApiModelProperty("企业微信企业corpId")
    private String wxCorpId;
    @ApiModelProperty("企业微信应用secret")
    private String wxAppSecret;
    @ApiModelProperty("企业微信通讯录secret")
    private String wxBookSecret;
    @ApiModelProperty("企业微信回调配置token")
    private String wxCallbackToken;
    @ApiModelProperty("企业微信应用的AgentId")
    private String wxAgentId;
    @ApiModelProperty("企业微信回调配置加解密aes_key")
    private String wxAesKey;
    @ApiModelProperty("钉钉应用key")
    private String dingAppKey;
    @ApiModelProperty("钉钉应用secret")
    private String dingAppSecret;
    @ApiModelProperty("钉钉加解密aes_key")
    private String dingAesKey;
    @ApiModelProperty("钉钉回调token")
    private String dingCallbackToken;
    @ApiModelProperty("钉钉企业corpId")
    private String dingCorpId;
    @ApiModelProperty("钉钉应用AgentId")
    private String dingAgentId;
    @ApiModelProperty("应用类型 1企业微信 2钉钉")
    private Integer appType;
    @ApiModelProperty("备注/说明")
    private String remark;
    @ApiModelProperty("上次同步时间")
    private Date lastSyncTime;
    @ApiModelProperty("第三方回调域名")
    private String domainUrl;
 
    public OuterAppConfig setWxCorpId(final String wxCorpId) {
        this.wxCorpId = wxCorpId;
        return this;
    }
 
    public OuterAppConfig setWxAppSecret(final String wxAppSecret) {
        this.wxAppSecret = wxAppSecret;
        return this;
    }
 
    public OuterAppConfig setWxBookSecret(final String wxBookSecret) {
        this.wxBookSecret = wxBookSecret;
        return this;
    }
 
    public OuterAppConfig setWxCallbackToken(final String wxCallbackToken) {
        this.wxCallbackToken = wxCallbackToken;
        return this;
    }
 
    public OuterAppConfig setWxAgentId(final String wxAgentId) {
        this.wxAgentId = wxAgentId;
        return this;
    }
 
    public OuterAppConfig setWxAesKey(final String wxAesKey) {
        this.wxAesKey = wxAesKey;
        return this;
    }
 
    public OuterAppConfig setDingAppKey(final String dingAppKey) {
        this.dingAppKey = dingAppKey;
        return this;
    }
 
    public OuterAppConfig setDingAppSecret(final String dingAppSecret) {
        this.dingAppSecret = dingAppSecret;
        return this;
    }
 
    public OuterAppConfig setDingAesKey(final String dingAesKey) {
        this.dingAesKey = dingAesKey;
        return this;
    }
 
    public OuterAppConfig setDingCallbackToken(final String dingCallbackToken) {
        this.dingCallbackToken = dingCallbackToken;
        return this;
    }
 
    public OuterAppConfig setDingCorpId(final String dingCorpId) {
        this.dingCorpId = dingCorpId;
        return this;
    }
 
    public OuterAppConfig setDingAgentId(final String dingAgentId) {
        this.dingAgentId = dingAgentId;
        return this;
    }
 
    public OuterAppConfig setAppType(final Integer appType) {
        this.appType = appType;
        return this;
    }
 
    public OuterAppConfig setRemark(final String remark) {
        this.remark = remark;
        return this;
    }
 
    public OuterAppConfig setLastSyncTime(final Date lastSyncTime) {
        this.lastSyncTime = lastSyncTime;
        return this;
    }
 
    public OuterAppConfig setDomainUrl(final String domainUrl) {
        this.domainUrl = domainUrl;
        return this;
    }
 
    public String toString() {
        return "OuterAppConfig(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() + ", lastSyncTime=" + getLastSyncTime() + ", domainUrl=" + getDomainUrl() + ")";
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof OuterAppConfig) {
            OuterAppConfig other = (OuterAppConfig) o;
            if (other.canEqual(this) && super.equals(o)) {
                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$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$domainUrl = getDomainUrl();
                Object other$domainUrl = other.getDomainUrl();
                return this$domainUrl == null ? other$domainUrl == null : this$domainUrl.equals(other$domainUrl);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof OuterAppConfig;
    }
 
    public int hashCode() {
        int result = super.hashCode();
        Object $appType = getAppType();
        int result2 = (result * 59) + ($appType == null ? 43 : $appType.hashCode());
        Object $wxCorpId = getWxCorpId();
        int result3 = (result2 * 59) + ($wxCorpId == null ? 43 : $wxCorpId.hashCode());
        Object $wxAppSecret = getWxAppSecret();
        int result4 = (result3 * 59) + ($wxAppSecret == null ? 43 : $wxAppSecret.hashCode());
        Object $wxBookSecret = getWxBookSecret();
        int result5 = (result4 * 59) + ($wxBookSecret == null ? 43 : $wxBookSecret.hashCode());
        Object $wxCallbackToken = getWxCallbackToken();
        int result6 = (result5 * 59) + ($wxCallbackToken == null ? 43 : $wxCallbackToken.hashCode());
        Object $wxAgentId = getWxAgentId();
        int result7 = (result6 * 59) + ($wxAgentId == null ? 43 : $wxAgentId.hashCode());
        Object $wxAesKey = getWxAesKey();
        int result8 = (result7 * 59) + ($wxAesKey == null ? 43 : $wxAesKey.hashCode());
        Object $dingAppKey = getDingAppKey();
        int result9 = (result8 * 59) + ($dingAppKey == null ? 43 : $dingAppKey.hashCode());
        Object $dingAppSecret = getDingAppSecret();
        int result10 = (result9 * 59) + ($dingAppSecret == null ? 43 : $dingAppSecret.hashCode());
        Object $dingAesKey = getDingAesKey();
        int result11 = (result10 * 59) + ($dingAesKey == null ? 43 : $dingAesKey.hashCode());
        Object $dingCallbackToken = getDingCallbackToken();
        int result12 = (result11 * 59) + ($dingCallbackToken == null ? 43 : $dingCallbackToken.hashCode());
        Object $dingCorpId = getDingCorpId();
        int result13 = (result12 * 59) + ($dingCorpId == null ? 43 : $dingCorpId.hashCode());
        Object $dingAgentId = getDingAgentId();
        int result14 = (result13 * 59) + ($dingAgentId == null ? 43 : $dingAgentId.hashCode());
        Object $remark = getRemark();
        int result15 = (result14 * 59) + ($remark == null ? 43 : $remark.hashCode());
        Object $lastSyncTime = getLastSyncTime();
        int result16 = (result15 * 59) + ($lastSyncTime == null ? 43 : $lastSyncTime.hashCode());
        Object $domainUrl = getDomainUrl();
        return (result16 * 59) + ($domainUrl == null ? 43 : $domainUrl.hashCode());
    }
 
    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 Date getLastSyncTime() {
        return this.lastSyncTime;
    }
 
    public String getDomainUrl() {
        return this.domainUrl;
    }
}