分开绑定支付宝接口和实名认证接口
This commit is contained in:
@@ -93,7 +93,10 @@ public class AppCashController {
|
||||
}
|
||||
redisUtils.set(intervalKey, true, 30);
|
||||
double money = Double.parseDouble(commonInfoService.findOne(929).getValue());
|
||||
double v = cashOutService.queryUserTodayCashAmount(userId);
|
||||
Double v = cashOutService.queryUserTodayCashAmount(userId);
|
||||
if (v == null) {
|
||||
v = 0.0d;
|
||||
}
|
||||
if ((v + amount) >= money) {
|
||||
return Result.error("今日提现金额已达上限");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user