| | |
| | | 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; |
| | |
| | | private String ReqStatus; |
| | | private String ReqCodeItemclass; |
| | | private String ReqCodeItemclassdetaill; |
| | | @JsonProperty |
| | | private String PatientID; |
| | | private String EpisodeID; |
| | | private String OutMedNO; |
| | |
| | | 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; |
| | |
| | | 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; |
| | |
| | | private String ReqExtBookcheckpertime; |
| | | private String ReqExtCheckremark; |
| | | private String PlanDefBarcode; |
| | | @JsonProperty |
| | | private PlanDefItemList PlanDefItemList; |
| | | |
| | | // 省略 getter 和 setter 方法 |