admin
2021-12-04 c79b1ebed5a42a4cbb2f824232da2a51ff22a9a1
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
42
43
44
45
46
47
48
49
50
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("腾讯云验证码短信模板"),
 
    //返回给前端的数据
    kefu("客服链接"),
    course("教程链接"),
    unRegister("注销链接"),
    privacyComplain("隐私投诉链接"),
    vipLink("会员链接"),
    sdkList("三方SDK链接"),
 
    ad_splash("广告-开屏"),
    ad_homeInterstitial("广告-首页插屏"),
    ad_mineExpress("广告-我的页面原生"),
    ad_searchExpress("广告-搜索页面原生"),
    ad_searchResultBanner("广告-搜索结果banner"),
    ad_travelShareInterstitial("广告-轨迹分享页插屏"),
    ad_vipReward("广告-会员激励视频"),
    ;
 
    private String desc;
 
    public String getDesc() {
        return desc;
    }
 
    private SystemConfigKey(String desc) {
        this.desc = desc;
    }
 
 
}