| | |
| | | ); |
| | | BigDecimal withdrawAmount = new BigDecimal(withdrawAmountDic.getValue()).setScale(2, BigDecimal.ROUND_DOWN); |
| | | mallMemberVo.setWithdrawAmount(withdrawAmount); |
| | | |
| | | DataDictionaryCustom usdtPriceDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode( |
| | | DataDictionaryEnum.USDT_PRICE.getType(), |
| | | DataDictionaryEnum.USDT_PRICE.getCode() |
| | | ); |
| | | BigDecimal usdtPrice = new BigDecimal(usdtPriceDic.getValue()).setScale(2, BigDecimal.ROUND_DOWN); |
| | | mallMemberVo.setUsdtPrice(usdtPrice); |
| | | return new FebsResponse().success().data(mallMemberVo); |
| | | } |
| | | |