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
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
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;
    }
}