eight
2024-10-29 6a07378488a9dd1515a6a0fdb4c1833638e6592b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package cn.lihu.jh.module.ecg.feign.dto;
 
import lombok.Data;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
public class AppointmentExternal {
    private String ReqIdeApplyno;
    private String ReqStatus;
    private String ReqCodeItemclass;
    private String ReqCodeItemclassdetaill;
    private String PatientID;
    private String EpisodeID;
    private String OutMedNO;
    private String InMedNO;
    private String VisitNum;
    private String AdmTypeCode;
    private String AdmTypeDesc;
    private String AdmStatus;
    private LocalDate AdmDate;
    private String PatName;
    private String Patgender;
    private LocalDate EncPatBirthDate;
    private String Age;
    private String Phone;
    private String Address;
    private String IdentityID;
    private String PatLocDeptCode;
    private String PatLocDeptDesc;
    private String PatLocWardCode;
    private String PatLocWardDesc;
    private String EnBedno;
    private String clinSymp;
    private String clinDiag;
    private String relevantDiag;
    private LocalDateTime ReqAuthoredOn;
    private String ReqExtApplydeptCode;
    private String ReqExtApplydeptName;
    private String ReqExtExecdeptCode;
    private String ReqExtExecdeptName;
    private String ReqExtApplydocCode;
    private String ReqExtApplydocName;
    private String ReqExtMedhistory;
    private LocalDateTime ReqExtBooktime;
    private String ReqExtBookplace;
    private String ReqExtUrgent;
    private String ReqExtExamgoal;
    private String ReqExtBookcheckno;
    private String ReqExtBookcheckpertime;
    private String ReqExtCheckremark;
    private String PlanDefBarcode;
    private PlanDefItemList PlanDefItemList;
 
    // 省略 getter 和 setter 方法
}