| | |
| | | DataDictionaryEnum.CHARGE_ADDRESS.getCode() |
| | | ); |
| | | mallMemberVo.setChargeAddress(chargeAddressDic.getValue()); |
| | | |
| | | DataDictionaryCustom withdrawAmountDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode( |
| | | DataDictionaryEnum.WITHDRAW_AMOUNT.getType(), |
| | | DataDictionaryEnum.WITHDRAW_AMOUNT.getCode() |
| | | ); |
| | | BigDecimal withdrawAmount = new BigDecimal(withdrawAmountDic.getValue()).setScale(2, BigDecimal.ROUND_DOWN); |
| | | mallMemberVo.setWithdrawAmount(withdrawAmount); |
| | | return new FebsResponse().success().data(mallMemberVo); |
| | | } |
| | | |