|
@@ -92,9 +92,9 @@ public class ChannelWithdrawController extends BaseApiController {
|
|
StringUtils.isNotBlank(feeRateValue) ? feeRateValue : FEE_RATE_DEFAULT_VALUE);
|
|
StringUtils.isNotBlank(feeRateValue) ? feeRateValue : FEE_RATE_DEFAULT_VALUE);
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
Long channelId = SecurityUtils.getLoginUser().getChannelId();
|
|
Channel channel = channelService.getById(channelId);
|
|
Channel channel = channelService.getById(channelId);
|
|
- if (channel.getMoney() < 50000) {
|
|
|
|
|
|
+ /*if (channel.getMoney() < 50000) {
|
|
return AjaxResult.error("账户余额不足500元");
|
|
return AjaxResult.error("账户余额不足500元");
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
if (param.getMoney() > channel.getMoney() ) {
|
|
if (param.getMoney() > channel.getMoney() ) {
|
|
return AjaxResult.error("提现金额超出了余额");
|
|
return AjaxResult.error("提现金额超出了余额");
|
|
}
|
|
}
|