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("腾讯云验证码短信模板"), testAccount("测试账号"), //返回给前端的数据 kefu("客服链接"), course("教程链接"), unRegister("注销链接"), privacyComplain("隐私投诉链接"), vipLink("会员链接"); private String desc; public String getDesc() { return desc; } private SystemConfigKey(String desc) { this.desc = desc; } }