|
@ -268,7 +268,8 @@ public class UserAccountServiceImpl implements IUserAccountService { |
|
|
// 2. 查询用户的限额信息
|
|
|
// 2. 查询用户的限额信息
|
|
|
BigDecimal walletLimit = walletLimitConfigService.getWalletLimitByType(loginUser.getUserType()); |
|
|
BigDecimal walletLimit = walletLimitConfigService.getWalletLimitByType(loginUser.getUserType()); |
|
|
if (walletLimit == null) { |
|
|
if (walletLimit == null) { |
|
|
throw new ServiceException("当前用户不存在限额"); |
|
|
return String.valueOf("999999999999999.00"); |
|
|
|
|
|
// throw new ServiceException("当前用户不存在限额");
|
|
|
} else { |
|
|
} else { |
|
|
return String.valueOf(walletLimit); |
|
|
return String.valueOf(walletLimit); |
|
|
} |
|
|
} |
|
|