Compare commits

..

2 Commits

Author SHA1 Message Date
skjia fecac82f1f Merge branch 'master' of http://192.168.0.75:3000/bonus/Bonus-Cloud-JYY-Smart-Canteen 2025-06-16 12:48:08 +08:00
skjia 01d36011f6 jsk 2025-06-16 12:47:56 +08:00
1 changed files with 4 additions and 1 deletions

View File

@ -36,7 +36,10 @@ public class HealthPersonInfoServiceImpl implements IHealthPersonInfoService {
*/
@Override
public HealthPersonInfo selectHealthPersonInfoById(Long id) {
return healthPersonInfoMapper.selectHealthPersonInfoById(id);
HealthPersonInfo vo=healthPersonInfoMapper.selectHealthPersonInfoById(id);
vo.setMobile(SM4EncryptUtils.sm4Decrypt(vo.getMobile()==null?"":vo.getMobile()));
return vo;
}
/**