admin
2021-11-19 7511509c68bd2892aad48a0612d497387660214d
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
package com.yeshi.location.app.entity.config;
 
/**
 * @author hxh
 * @title: SystemConfigKey
 * @description: key值
 * @date 2021/11/16 11:22
 */
public enum SystemConfigKey {
 
    signKey("签名Key"),
    defaultPortrait("默认头像"),
    defaultNickNamePrefix("默认昵称前缀"),
    wxAppId("微信开放平台APPId"),
    wxAppSecret("微信开放平台APPSecret"),
    aliyunOneKeyAuthAcessKey("阿里云一键登录appId"),
    aliyunOneKeyAuthAcessSecret("阿里云一键登录appSecret"),
    tencentSMSAppId("腾讯云短信APPID"),
    tencentSMSAppKey("腾讯云短信APPKey"),
    tencentVerifySMSTemplate("腾讯云验证码短信模板");
 
    private String desc;
 
    public String getDesc() {
        return desc;
    }
 
    private SystemConfigKey(String desc) {
        this.desc = desc;
    }
 
 
}