From 6a07378488a9dd1515a6a0fdb4c1833638e6592b Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期二, 29 十月 2024 14:44:57 +0800 Subject: [PATCH] 接口对接 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java index 01b8fef..83f0c6d 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java @@ -2,6 +2,9 @@ import lombok.Data; +import java.time.LocalDate; +import java.time.LocalDateTime; + @Data public class AppointmentExternal { private String ReqIdeApplyno; @@ -16,10 +19,10 @@ private String AdmTypeCode; private String AdmTypeDesc; private String AdmStatus; - private String AdmDate; + private LocalDate AdmDate; private String PatName; private String Patgender; - private String EncPatBirthDate; + private LocalDate EncPatBirthDate; private String Age; private String Phone; private String Address; @@ -32,7 +35,7 @@ private String clinSymp; private String clinDiag; private String relevantDiag; - private String ReqAuthoredOn; + private LocalDateTime ReqAuthoredOn; private String ReqExtApplydeptCode; private String ReqExtApplydeptName; private String ReqExtExecdeptCode; @@ -40,7 +43,7 @@ private String ReqExtApplydocCode; private String ReqExtApplydocName; private String ReqExtMedhistory; - private String ReqExtBooktime; + private LocalDateTime ReqExtBooktime; private String ReqExtBookplace; private String ReqExtUrgent; private String ReqExtExamgoal; -- Gitblit v1.9.3