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);
}