|
@@ -124,6 +124,9 @@ public class BalanceServiceImpl extends ServiceImpl<MtBalanceMapper, MtBalance>
|
|
|
List<BalanceDto> dataList = new ArrayList<>();
|
|
|
for (MtBalance mtBalance : balanceList) {
|
|
|
MtUser userInfo = memberService.queryMemberById(mtBalance.getUserId());
|
|
|
+ if (userInfo != null && StringUtil.isNotEmpty(userInfo.getMobile())) {
|
|
|
+ userInfo.setMobile(userInfo.getMobile().substring(0, 3) + "****" + userInfo.getMobile().substring(7));
|
|
|
+ }
|
|
|
BalanceDto item = new BalanceDto();
|
|
|
item.setId(mtBalance.getId());
|
|
|
item.setAmount(mtBalance.getAmount());
|