This commit is contained in:
张良(004796)
2024-02-06 17:15:15 +08:00
parent 90356b55c8
commit af790ee926
2 changed files with 3 additions and 1 deletions

View File

@@ -69,7 +69,8 @@ public class SettingAppController {
List<WithdrawExchange> list = withdrawExchangeService.list(Wrappers.lambdaQuery(WithdrawExchange.class)
.eq(WithdrawExchange::getStatus,0)
.orderByAsc(WithdrawExchange::getMoney));
vo.setWithdrawRuleRemark("平台50元起提现最快2小时到账每天不限次数22点后提现次日中午10点到账");
String withdrawRuleRemark = systemConfigManager.getSystemConfig(SystemConfigEnum.WITHDRAW_RULE_REMARK);
vo.setWithdrawRuleRemark(withdrawRuleRemark);
vo.setList(list);
return R.ok(vo);
}

View File

@@ -51,6 +51,7 @@ public enum SystemConfigEnum {
ALI_PAY_FIRST("1", "支付宝支付显示是否在前面",SystemConfigGroupEnum.BUSINESS,new BooleanSystemConfigCheck()),
OPEN_WITHDRAW("1", "是否开启提现功能",SystemConfigGroupEnum.BUSINESS,new BooleanSystemConfigCheck()),
HOME_RECOMMEND_FOLLOWS_LIMIT("20", "首页随机推荐关注用户数量",SystemConfigGroupEnum.BUSINESS,new NumberSystemConfigCheck()),
WITHDRAW_RULE_REMARK("平台50元起提现最快2小时到账每天不限次数22点后提现次日中午10点到账", "提现规则说明",SystemConfigGroupEnum.BUSINESS),
SENSITIVE_ENABLE("1", "是否开启手机号脱敏",SystemConfigGroupEnum.SYSTEM,new BooleanSystemConfigCheck()),
YUNXIN_ONLINE_ENABLE("1", "是否开启云信监控在线状态",SystemConfigGroupEnum.SYSTEM,new BooleanSystemConfigCheck()),
SMS_CODE_ADMIN("", "万能验证码",SystemConfigGroupEnum.SYSTEM),