liusheng
2025-05-09 6e34bc4a364b68ab0e62159eecc61bb6b0bf8201
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package com.smartor.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * 患者档案对象 pat_archive
 *
 * @author smartor
 * @date 2023-03-04
 */
@ApiModel(value = "PatArchiveVO", description = "患者档案对象")
@Data
public class PatArchiveVO extends BaseEntity {
 
    /**
     * 自增ID
     */
    @ApiModelProperty("自增ID")
    private Long id;
 
    /**
     * 姓名
     */
    @ApiModelProperty("姓名")
    @Excel(name = " 姓名 ")
    private String name;
 
    /**
     * 性别  1:男 2:女
     */
    @ApiModelProperty("性别")
    @Excel(name = " 性别 ")
    private Long sex;
 
    /**
     * 证件类型
     */
    @ApiModelProperty("证件类型")
    @Excel(name = " 证件类型 ")
    private String idcardtype;
 
 
    /**
     * 证件号码
     */
    @ApiModelProperty("籍贯")
    @Excel(name = " 籍贯 ")
    private String nativePlace;
 
 
    /**
     * 证件号码
     */
    @ApiModelProperty("居住地")
    @Excel(name = " 居住地 ")
    private String placeOfResidence;
 
 
    /**
     * 证件号码
     */
    @ApiModelProperty("出生地")
    @Excel(name = " 出生地 ")
    private String birthplace;
 
 
    /**
     * 证件号码
     */
    @ApiModelProperty("证件号码")
    @Excel(name = " 证件号码 ")
    private String idcardno;
 
    /**
     * 生日
     */
    @ApiModelProperty("生日")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd")
    private Date birthdate;
 
    /**
     * 入院时间
     */
    @ApiModelProperty("入院时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 生日 ", width = 30, dateFormat = "yyyy-MM-dd")
    private Date inhosptime;
 
    /**
     * 年龄
     */
    @ApiModelProperty("年龄")
    @Excel(name = " 年龄 ")
    private Long age;
 
    /**
     * 来源
     */
    @ApiModelProperty("来源")
    @Excel(name = " 来源 ")
    private Long sourcefrom;
 
    /**
     * 建档时间
     */
    @ApiModelProperty("建档时间")
    @Excel(name = " 建档时间 ")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date archivetime;
 
    /**
     * 建档人
     */
    @ApiModelProperty("建档人")
    @Excel(name = " 建档人 ")
    private String archiveby;
 
    /**
     * 手机号码
     */
    @ApiModelProperty("手机号码")
    @Excel(name = " 手机号码 ")
    private String telcode;
 
 
    /**
     * 亲属号码
     */
    @ApiModelProperty("亲属号码")
    @Excel(name = " 亲属号码 ")
    private String relativetelcode;
 
    /**
     * 民族
     */
    @ApiModelProperty("民族")
    @Excel(name = " 民族 ")
    private String nation;
 
    /**
     * 机构ID
     */
    @ApiModelProperty("机构ID")
    @Excel(name = " 机构ID ")
    private String orgid;
 
    /**
     * 微信openid
     */
    @ApiModelProperty("微信openid")
    @Excel(name = " 微信openid ")
    private String openid;
 
    /**
     * 删除标记
     */
    @ApiModelProperty("删除标记")
    private String delFlag;
 
    /**
     * 上传标记
     */
    @ApiModelProperty("上传标记")
    private Long isupload;
 
    /**
     * 上传时间
     */
    @ApiModelProperty("上传时间")
    private Date uploadTime;
 
    /**
     * 标签
     */
    @ApiModelProperty("标签")
    @Excel(name = " 标签 ", cellType = Excel.ColumnType.STRING)
    private String tag;
 
    /**
     * 标签
     */
    @ApiModelProperty("标签id")
    @Excel(name = " 标签id ", cellType = Excel.ColumnType.STRING)
    private Long tagid;
 
    @ApiModelProperty("标签集合")
    private List<PatArchivetag> tagList;
 
    /**
     * 标签
     */
    @ApiModelProperty("患者类型")
    @Excel(name = " 患者类型 ", cellType = Excel.ColumnType.STRING)
    private String pattype;
 
    /**
     * 钉钉号
     */
    @ApiModelProperty("钉钉号")
    @Excel(name = " 钉钉号 ")
    private String dduserid;
 
    /**
     * 钉钉号
     */
    @ApiModelProperty("科室")
    @Excel(name = " 科室 ")
    private String dept;
 
 
    /**
     * 服务标识:0,需要,1,不需要
     */
    @ApiModelProperty("服务标识:0,需要,1,不需要")
    @Excel(name = " 服务标识:0,需要,1,不需要 ")
    private String notrequiredFlag;
 
    /**
     * 不要服务的原因
     */
    @ApiModelProperty("不要服务的原因")
    @Excel(name = " 不要服务的原因 ")
    private String notrequiredreason;
 
    /**
     * 钉钉号
     */
    @ApiModelProperty("科室")
    @Excel(name = " 科室 ")
    private String bedNo;
 
    /**
     * 会员属性:0非会员,1一般会员、2重要会员
     */
    @ApiModelProperty("会员属性:0非会员,1一般会员、2重要会员")
    @Excel(name = " 会员属性:0非会员,1一般会员、2重要会员 ")
    private String viptype;
 
    @ApiModelProperty(value = "是否存在操作:1 新增 2修改 3删除")
    private Integer isoperation;
 
 
    @ApiModelProperty("出院病区名称")
    private String leavehospitaldistrictname;
 
    @ApiModelProperty("出院病区编号")
    private String leavehospitaldistrictcode;
 
    /**
     * 出院方式序号
     */
    @ApiModelProperty("出院方式序号")
    @Excel(name = " 出院方式序号 ")
    private String outWayId;
 
    /**
     * 出院方式名称
     */
    @ApiModelProperty("出院方式名称")
    @Excel(name = " 出院方式名称 ")
    private String outWayName;
    @ApiModelProperty("照护场所:1家庭   2养老机构")
    @Excel(name = " 照护场所:1家庭   2养老机构 ")
    private String careFacilities;
 
    @ApiModelProperty("照护场所:1家庭   2养老机构")
    @Excel(name = " 照护场所:1家庭   2养老机构 ")
    private String casePath;
 
    @ApiModelProperty("受教育程度")
    @Excel(name = "受教育程度")
    private String degreeOfEducation;
 
    @ApiModelProperty("婚姻状况")
    @Excel(name = "婚姻状况")
    private String maritalStatus;
 
    @ApiModelProperty("家庭人均收入")
    @Excel(name = "家庭人均收入")
    private String income;
 
    @ApiModelProperty("医保类型")
    @Excel(name = "医保类型")
    private String medicareType;
 
    @ApiModelProperty("主要照护人")
    @Excel(name = "主要照护人")
    private String carePerson;
 
    @ApiModelProperty("主要照护人年龄")
    @Excel(name = "主要照护人年龄")
    private String casePersonAge;
 
}