yangys
2024-04-05 84dea9976c29ac938fa018b8566c71461b056418
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.qianwen.core.notify.provider.wechat;
 
import com.qianwen.core.notify.Provider;
 
/* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/provider/wechat/WechatProvider.class */
public enum WechatProvider implements Provider {
    mpMessage("公众号模板消息");
    
    private String name;
 
    WechatProvider(final String name) {
        this.name = name;
    }
 
    @Override // com.qianwen.core.notify.Provider
    public String getName() {
        return this.name;
    }
 
    @Override // com.qianwen.core.notify.Provider
    public String getId() {
        return name();
    }
}