From 4478bda9138b9c8ae6fa1b0ea57b00afcdab492e Mon Sep 17 00:00:00 2001 From: lxd <1004405501@qq.com> Date: Thu, 17 Apr 2025 11:17:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BD=93=E6=A3=80=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=9B=9E=E4=BC=A0=E6=8E=A5=E5=8F=A3=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/inspectpatient/InspectPatientController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java index 744fe65..7ece1ac 100644 --- a/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java +++ b/yudao-module-inspect/yudao-module-inspect-biz/src/main/java/cn/iocoder/yudao/module/inspect/controller/admin/inspectpatient/InspectPatientController.java @@ -756,7 +756,8 @@ public class InspectPatientController { patientJYInfoVO.setIdcard(patientDO.getCardId()); if(patientDO.getMedicalDateTime()!=null) { - patientJYInfoVO.setExamindate(patientDO.getMedicalDateTime().toString()); + DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); + patientJYInfoVO.setExamindate(patientDO.getMedicalDateTime().format(formatter)); } //心电图信息 InspectPacsDataDO ecg = pacsDataService.getPacsDataByCode(medicalSn,"ecg");