| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.ydtech.modules.admin.constants;
- import lombok.AllArgsConstructor;
- import lombok.Getter;
- /**
- * 启动配置
- */
- @AllArgsConstructor
- @Getter
- public enum SwitchConfig {
- SC_01("proxyCustomerAgent", "代客录单(代理人启动)"),
- SC_02("proxyCustomerChannel", "代客录单(渠道启动)"),
- // 费用查看是否 / 10
- FEE_01("feeViewAgent", "掌柜币显示(代理人启动)"),
- FEE_02("feeViewChannel", "掌柜币显示(渠道启动)"),
- // add by hxl 2024-09-26 电销组员提现限制
- DX_01("dxtxFlag", "电销提现(组员提现)"),
- // add by hxl 2024-09-26 协议机构授权配置开关
- XYSQ_01("agreementFlag", "协议机构授权配置开关"),
- // 是否显示费用
- FDA_01("feeDisplayAgent", "费用显示(代理人启动)"),
- FDA_02("feeDisplayChannel", "费用显示(渠道启动)"),
- // 是否显示
- WCQCA_01("weComQRCodeAgent", "企业微信二维码显示(代理人)"),
- WCQCA_02("weComQRCodeChannel", "企业微信二维码显示(渠道)"),
- WCQCA_03("weComQRCodeOther", "企业微信二维码显示(其他)"),
- //余额提现控制
- YETX_01("balanceExtract","提现控制(线上或线下)"),
- APP_UNDEVELOPED("appUndeveloped", "app未开发完功能隐藏"),
- ;
- private final String code;
- private final String desc;
- }
|