From e36c1e2363e36a69a3cc8ccbc00d28b16f926abd Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期四, 07 十一月 2024 14:38:57 +0800 Subject: [PATCH] 序号表操作 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/feign/dto/AppointmentExternal.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 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 7ee8141..1fb3991 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 @@ -1,5 +1,7 @@ package cn.lihu.jh.module.ecg.feign.dto; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import java.time.LocalDate; @@ -11,6 +13,7 @@ private String ReqStatus; private String ReqCodeItemclass; private String ReqCodeItemclassdetaill; + @JsonProperty private String PatientID; private String EpisodeID; private String OutMedNO; @@ -20,21 +23,35 @@ private String AdmTypeDesc; private String AdmStatus; private Date AdmDate; //LocalDate + @JsonProperty private String PatName; + @JsonProperty private String Patgender; + @JsonFormat(pattern = "yyyy-MM-dd") private Date EncPatBirthDate; //LocalDate private String Age; + @JsonProperty private String Phone; + @JsonProperty private String Address; + @JsonProperty private String IdentityID; + @JsonProperty private String PatLocDeptCode; + @JsonProperty private String PatLocDeptDesc; + @JsonProperty private String PatLocWardCode; + @JsonProperty private String PatLocWardDesc; + @JsonProperty private String EnBedno; + @JsonProperty private String clinSymp; + @JsonProperty private String clinDiag; private String relevantDiag; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date ReqAuthoredOn; // LocalDateTime private String ReqExtApplydeptCode; private String ReqExtApplydeptName; @@ -43,6 +60,7 @@ private String ReqExtApplydocCode; private String ReqExtApplydocName; private String ReqExtMedhistory; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date ReqExtBooktime; // LocalDateTime private String ReqExtBookplace; private String ReqExtUrgent; @@ -51,6 +69,7 @@ private String ReqExtBookcheckpertime; private String ReqExtCheckremark; private String PlanDefBarcode; + @JsonProperty private PlanDefItemList PlanDefItemList; // 鐪佺暐 getter 鍜� setter 鏂规硶 -- Gitblit v1.9.3