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
38
39
40
41
| 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;
| }
|
|
| }
|
|