MedicalSnPatientInfo方法修改

This commit is contained in:
lxd 2025-04-16 09:29:59 +08:00
parent 5014166133
commit 0b6f848b63

View File

@ -1190,7 +1190,7 @@ public class InspectPatientController {
personalInfoVO.setName(patientDO.getPName());
personalInfoVO.setSex(patientDO.getGender());
personalInfoVO.setAge(String.valueOf(StrUtils.calculateAgeFromIdCard(patientDO.getCardId())));
personalInfoVO.setBirthday(patientDO.getBirthday().toString());
personalInfoVO.setBirthday(patientDO.getBirthday().toLocalDate().toString());
personalInfoVO.setAddress(patientDO.getDomicileaddress());
personalInfoVO.setTelephone(patientDO.getPhoneNum());
return success(personalInfoVO);