yangys
2024-04-11 d19f16214e16b1a33b71fd8f63662a35d8a2dc04
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
package com.qianwen.core.notify.provider.dingtalk;
 
import javax.validation.constraints.NotBlank;
 
/* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/provider/dingtalk/DingTalkProperties.class */
public class DingTalkProperties {
    @NotBlank(message = "appKey不能为空")
    private String appKey;
    @NotBlank(message = "appSecret不能为空")
    private String appSecret;
 
    public void setAppKey(final String appKey) {
        this.appKey = appKey;
    }
 
    public void setAppSecret(final String appSecret) {
        this.appSecret = appSecret;
    }
 
    public String getAppKey() {
        return this.appKey;
    }
 
    public String getAppSecret() {
        return this.appSecret;
    }
}