package com.ks.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;
|
}
|
|
|
}
|