From 60fbcb32b1a607ac086efa812e83a81b27ee1f23 Mon Sep 17 00:00:00 2001 From: wangw <1594593906@qq.com> Date: Fri, 3 Apr 2026 14:37:09 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=20=E4=BD=99=E9=A2=9D?= =?UTF-8?q?=E6=94=AF=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/czg/account/entity/ShopUser.java | 2 +- .../service/impl/AShopUserServiceImpl.java | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cash-common/cash-common-service/src/main/java/com/czg/account/entity/ShopUser.java b/cash-common/cash-common-service/src/main/java/com/czg/account/entity/ShopUser.java index 358907fd0..a79335442 100644 --- a/cash-common/cash-common-service/src/main/java/com/czg/account/entity/ShopUser.java +++ b/cash-common/cash-common-service/src/main/java/com/czg/account/entity/ShopUser.java @@ -51,7 +51,7 @@ public class ShopUser implements Serializable { /** * 电话号码 */ - @ColumnMask(Masks.MOBILE) +// @ColumnMask(Masks.MOBILE) private String phone; /** diff --git a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/AShopUserServiceImpl.java b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/AShopUserServiceImpl.java index aec9d53d4..d25bb0d7a 100644 --- a/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/AShopUserServiceImpl.java +++ b/cash-service/account-service/src/main/java/com/czg/service/account/service/impl/AShopUserServiceImpl.java @@ -93,14 +93,14 @@ public class AShopUserServiceImpl implements AShopUserService { Long mainIdByShopId = shopInfoService.getMainIdByShopId(StpKit.USER.getShopId()); PageHelper.startPage(PageUtil.buildPageHelp()); PageInfo shopUsers = new PageInfo<>(shopUserMapper.selectPageByKeyAndIsVip(mainIdByShopId, isVip, key, amount)); - shopUsers.getList().forEach(shopUserDTO -> { - if (StrUtil.isNotBlank(shopUserDTO.getPhone())) { - shopUserDTO.setPhone(DesensitizedUtil.mobilePhone(shopUserDTO.getPhone())); - } - if (StrUtil.isNotBlank(shopUserDTO.getNickName())) { - shopUserDTO.setNickName(DesensitizedUtil.chineseName(shopUserDTO.getNickName())); - } - }); +// shopUsers.getList().forEach(shopUserDTO -> { +// if (StrUtil.isNotBlank(shopUserDTO.getPhone())) { +// shopUserDTO.setPhone(DesensitizedUtil.mobilePhone(shopUserDTO.getPhone())); +// } +// if (StrUtil.isNotBlank(shopUserDTO.getNickName())) { +// shopUserDTO.setNickName(DesensitizedUtil.chineseName(shopUserDTO.getNickName())); +// } +// }); return PageUtil.convert(shopUsers); }