| | |
| | | DataDictionaryEnum.COIN_CHANGE.getCode() |
| | | ); |
| | | mallMemberVo.setChangeType(Integer.parseInt(StrUtil.isEmpty(coinChangeDic.getValue()) ? "1" : coinChangeDic.getValue())); |
| | | |
| | | DataDictionaryCustom coinInsideChangeDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode( |
| | | DataDictionaryEnum.COIN_INSIDE_CHANGE.getType(), |
| | | DataDictionaryEnum.COIN_INSIDE_CHANGE.getCode() |
| | | ); |
| | | mallMemberVo.setAroundCoinType(Integer.parseInt(StrUtil.isEmpty(coinInsideChangeDic.getValue()) ? "1" : coinInsideChangeDic.getValue())); |
| | | return new FebsResponse().success().data(mallMemberVo); |
| | | } |
| | | |