|
|
@@ -1816,7 +1816,7 @@ public class FsUserServiceImpl implements IFsUserService {
|
|
|
AppConfig config = JSONUtil.toBean(json, AppConfig.class);
|
|
|
BigDecimal withdrawRatio = BigDecimal.valueOf(1000);
|
|
|
if (config != null && config.getWithdrawRatio()!=null) {
|
|
|
- withdrawRatio = BigDecimal.valueOf(config.getIsOpenWithdraw());
|
|
|
+ withdrawRatio = BigDecimal.valueOf(config.getWithdrawRatio());
|
|
|
}
|
|
|
vo.setWithdrawCash(new BigDecimal(vo.getWithdrawIntegral()).divide(withdrawRatio,2,RoundingMode.DOWN));
|
|
|
return R.ok().put("data", vo);
|