liusheng
2024-05-16 2f13f59f023fba63aa993172d48c14bcaaafb233
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.ruoyi.project.domain.vo;
 
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
public class RelativeConfirmationVO {
 
    private Long id;
    private String name;
    private String sex;
    private Long idcardtype;
    private String idcardno;
    private Long Age;
    private String birthday;
    private String ageunit;
    private String phone;
    private String nationality;
    private String nativeplace;
    private String nation;
    private String occupation;
    private String education;
    private String registeraddress;
    private String registerprovince;
    private String registerprovincename;
    private String registercity;
    private String registercityname;
    private String registertown;
    private String registertownname;
    private String registercommunity;
    private String registercountycode;
    private String registercommunityname;
    private String registercountyname;
    private String recordstate;
    private String reporterno;
    private String reportername;
    private String reporterphone;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date reporttime;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date donatetime;
    private String donorno;
    private String treatmenthospitalno;
    private String treatmenthospitalname;
    private String treatmentdeptname;
    private Long rcid;
    private Long infoid;
    private String rcdonrono;
    private String rcname;
    private Long rcidcardtype;
    private String rcidcardno;
    private String rcphone;
    private String familyrelations;
    private String organdecision;
    private String residenceaddress;
    private String residenceprovince;
    private String coordinatedusernamet;
    private String coordinateduseridt;
    private String coordinatedusernameo;
    private String coordinateduserido;
    private String responsibleusername;
    private String responsibleuserid;
    private String acquisitiontissuename;
    private String acquisitiontissueno;
    private String signfamilyrelations;
    private String relativeconfirmationsign;
    private String organdecision_other;
    private String residenceprovincename;
    private String residencecityname;
    private String residencetown;
    private String residencetownname;
    private String residencecommunity;
    private String residencecommunityname;
    private String residencecountycode;
    private String residencecountyname;
    private String residencecity;
    private String kinship;
    private Long kinship_childrennum;
    private String kinshipconfirmationsign;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date signdate;
    private Long delFlag;
    private String createBy;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
    private String updateBy;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateTime;
    private String basecreateby;
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date starttime;
 
 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endtime;
    private String city;
    private String operatorno;
    private String operatorname;
    private Integer workflow;
    private Integer terminationCase;
}