From a7241e635249b625c2c828601048a85918925822 Mon Sep 17 00:00:00 2001 From: skjia <106962133@qq.com> Date: Fri, 4 Jul 2025 10:56:25 +0800 Subject: [PATCH] =?UTF-8?q?jsk=20=20=20=E7=94=B5=E8=AF=9D=E5=8A=A0?= =?UTF-8?q?=E5=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/HealthPersonInfoServiceImpl.java | 12 ++++++------ .../kitchen/KitchenStaffEnterExitRecordMapper.xml | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/health/service/impl/HealthPersonInfoServiceImpl.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/health/service/impl/HealthPersonInfoServiceImpl.java index 3d0c64d..cc25e21 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/health/service/impl/HealthPersonInfoServiceImpl.java +++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/health/service/impl/HealthPersonInfoServiceImpl.java @@ -53,12 +53,12 @@ public class HealthPersonInfoServiceImpl implements IHealthPersonInfoService { String encryptedSearchValue = SM4EncryptUtils.sm4Encrypt(healthPersonInfo.getArticleTitle()); healthPersonInfo.setEncryptedSearchValue(encryptedSearchValue); List list=healthPersonInfoMapper.selectHealthPersonInfoList(healthPersonInfo); - if(CollUtil.isNotEmpty(list)) { - for(HealthPersonInfo vo : list) { - vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile())); - vo.setMobile(maskPhoneNumber(vo.getMobile())); - } - } +// if(CollUtil.isNotEmpty(list)) { +// for(HealthPersonInfo vo : list) { +// vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile())); +// vo.setMobile(maskPhoneNumber(vo.getMobile())); +// } +// } return list; } public static String maskPhoneNumber(String phoneNumber) { diff --git a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffEnterExitRecordMapper.xml b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffEnterExitRecordMapper.xml index c0732ea..0e29066 100644 --- a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffEnterExitRecordMapper.xml +++ b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffEnterExitRecordMapper.xml @@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and kseer.enter_img_url = #{enterImgUrl} and substring(kseer.enter_time,1,10) >= #{startDate} and #{endDate}>= substring(kseer.enter_time,1,10) + order by kseer.enter_time desc