yangys
2024-04-18 b3cbbc1b1bf540359ac22f8733f6c322d845b38f
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
package com.qianwen.core.notify.provider.wechat.mini;
 
import javax.validation.constraints.NotEmpty;
 
/* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/provider/wechat/mini/WechatMiniProperties.class */
public class WechatMiniProperties {
    @NotEmpty(message = "名称不得为空")
    private String name;
    @NotEmpty(message = "appid不得为空")
    private String appid;
    @NotEmpty(message = "appSecret不得为空")
    private String secret;
 
    public void setName(final String name) {
        this.name = name;
    }
 
    public void setAppid(final String appid) {
        this.appid = appid;
    }
 
    public void setSecret(final String secret) {
        this.secret = secret;
    }
 
    public String getName() {
        return this.name;
    }
 
    public String getAppid() {
        return this.appid;
    }
 
    public String getSecret() {
        return this.secret;
    }
}