This commit is contained in:
skjia 2025-06-16 12:47:56 +08:00
parent d3bd419a3f
commit 01d36011f6
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;
}
/**