Compare commits

...

2 Commits

Author SHA1 Message Date
lxd
b065287673 Merge remote-tracking branch 'origin/main' 2025-04-16 09:30:13 +08:00
lxd
0b6f848b63 MedicalSnPatientInfo方法修改 2025-04-16 09:29:59 +08:00

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);