yangys
2024-05-18 040976de6f9934b99f30268a28e2ecf42260e217
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
package com.qianwen.core.notify.provider.dingtalk;
 
import javax.validation.constraints.NotBlank;
 
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;
    }
}