Linjiajia
2024-01-29 b17b9aa59bae6d03055f14d937821655dfaffa1f
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
package com.application.zhangshi_app_android.bean;
 
/**
 * @author Ljj
 * @date 2023.07.21. 20:07
 * @desc 健康保健现存问题
 */
public class HealthCareExistingProblemsBean {
    //脑血管疾病
    private BrainDiseaseClass brainDiseaseClass;
    //心脏疾病
    private HeartDiseaseClass heartDiseaseClass;
    //血管疾病
    private VascularDiseaseClass vascularDiseaseClass;
    //消化系统疾病
    private DigestiveSystemDiseaseClass digestiveSystemDiseaseClass;
    //呼吸系统疾病
    private RespiratorySystemDiseaseClass respiratorySystemDiseaseClass;
    //肾脏疾病
    private KidneyDiseaseClass kidneyDiseaseClass;
    //内分泌系统疾病
    private OtherDiseaseClass otherDiseaseClass;
 
    public void setBrainDiseaseClass(BrainDiseaseClass brainDiseaseClass){
        this.brainDiseaseClass = brainDiseaseClass;
    }
    public BrainDiseaseClass getBrainDiseaseClass(){
        return this.brainDiseaseClass;
    }
    public void setHeartDiseaseClass(HeartDiseaseClass heartDiseaseClass){
        this.heartDiseaseClass = heartDiseaseClass;
    }
    public HeartDiseaseClass getHeartDiseaseClass(){
        return this.heartDiseaseClass;
    }
    public void setVascularDiseaseClass(VascularDiseaseClass vascularDiseaseClass){
        this.vascularDiseaseClass = vascularDiseaseClass;
    }
    public VascularDiseaseClass getVascularDiseaseClass(){
        return this.vascularDiseaseClass;
    }
    public void setDigestiveSystemDiseaseClass(DigestiveSystemDiseaseClass digestiveSystemDiseaseClass){
        this.digestiveSystemDiseaseClass = digestiveSystemDiseaseClass;
    }
    public DigestiveSystemDiseaseClass getDigestiveSystemDiseaseClass(){
        return this.digestiveSystemDiseaseClass;
    }
    public void setRespiratorySystemDiseaseClass(RespiratorySystemDiseaseClass respiratorySystemDiseaseClass){
        this.respiratorySystemDiseaseClass = respiratorySystemDiseaseClass;
    }
    public RespiratorySystemDiseaseClass getRespiratorySystemDiseaseClass(){
        return this.respiratorySystemDiseaseClass;
    }
    public void setKidneyDiseaseClass(KidneyDiseaseClass kidneyDiseaseClass){
        this.kidneyDiseaseClass = kidneyDiseaseClass;
    }
    public KidneyDiseaseClass getKidneyDiseaseClass(){
        return this.kidneyDiseaseClass;
    }
    public void setOtherDiseaseClass(OtherDiseaseClass otherDiseaseClass){
        this.otherDiseaseClass = otherDiseaseClass;
    }
    public OtherDiseaseClass getOtherDiseaseClass(){
        return this.otherDiseaseClass;
    }
    public static class BrainDiseaseClass {
        //缺血性脑卒中
        private int ischemicStroke;
        //脑出血
        private int cerebralHemorrhage;
        //蛛网膜下腔出血
        private int subarachnoidHemorrhage;
        //短暂性脑缺血发作
        private int tia;
        //其他
        private int other;
 
        private String otherText;
 
 
        public void setIschemicStroke(int ischemicStroke){
            this.ischemicStroke = ischemicStroke;
        }
        public int getIschemicStroke(){
            return this.ischemicStroke;
        }
        public void setCerebralHemorrhage(int cerebralHemorrhage){
            this.cerebralHemorrhage = cerebralHemorrhage;
        }
        public int getCerebralHemorrhage(){
            return this.cerebralHemorrhage;
        }
        public void setSubarachnoidHemorrhage(int subarachnoidHemorrhage){
            this.subarachnoidHemorrhage = subarachnoidHemorrhage;
        }
        public int getSubarachnoidHemorrhage(){
            return this.subarachnoidHemorrhage;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
        public void setTia(int tia){
            this.tia = tia;
        }
        public int getTia(){
            return this.tia;
        }
 
    }
 
    public static class HeartDiseaseClass {
        //心肌梗塞
        private int myocardialInfarct;
        //心绞痛
        private int anginaPectoris;
        //冠状动脉血运重建
        private int coronaryRevascularization;
        //充血性心力衰竭
        private int congestiveHeartFailure;
        //心前区疼痛
        private int precordialPain;
        //其他
        private int other;
 
        private String otherText;
 
        public void setMyocardialInfarct(int myocardialInfarct){
            this.myocardialInfarct = myocardialInfarct;
        }
        public int getMyocardialInfarct(){
            return this.myocardialInfarct;
        }
        public void setAnginaPectoris(int anginaPectoris){
            this.anginaPectoris = anginaPectoris;
        }
        public int getAnginaPectoris(){
            return this.anginaPectoris;
        }
        public void setCoronaryRevascularization(int coronaryRevascularization){
            this.coronaryRevascularization = coronaryRevascularization;
        }
        public int getCoronaryRevascularization(){
            return this.coronaryRevascularization;
        }
        public void setCongestiveHeartFailure(int congestiveHeartFailure){
            this.congestiveHeartFailure = congestiveHeartFailure;
        }
        public int getCongestiveHeartFailure(){
            return this.congestiveHeartFailure;
        }
        public void setPrecordialPain(int precordialPain){
            this.precordialPain = precordialPain;
        }
        public int getPrecordialPain(){
            return this.precordialPain;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
 
    }
 
    public static class VascularDiseaseClass {
        //夹层动脉瘤
        private int dissectingAneurysm;
        //动脉闭塞性疾病
        private int arterialOcclusiveDiseases;
        //其他
        private int other;
 
        private String otherText;
 
        public void setDissectingAneurysm(int dissectingAneurysm){
            this.dissectingAneurysm = dissectingAneurysm;
        }
        public int getDissectingAneurysm(){
            return this.dissectingAneurysm;
        }
        public void setArterialOcclusiveDiseases(int arterialOcclusiveDiseases){
            this.arterialOcclusiveDiseases = arterialOcclusiveDiseases;
        }
        public int getArterialOcclusiveDiseases(){
            return this.arterialOcclusiveDiseases;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
 
    }
 
    public static class DigestiveSystemDiseaseClass {
        //胃十二指肠溃疡
        private int gastroduodenalUlcer;
        //反流性食管炎
        private int esophagitis;
        //慢性胃炎
        private int gastritis;
        //溃疡性结肠炎
        private int colitis;
        //肝炎
        private int hepatitis;
        //胆囊炎
        private int cholecystitis;
        //胆结石
        private int cholelithiasis;
        //脂肪肝
        private int fattyLiver;
        //高脂血症
        private int hyperlipidemia;
        //痔疮
        private int haemorrhoids;
        //其他
        private int other;
 
        private String otherText;
 
        public void setGastroduodenalUlcer(int gastroduodenalUlcer){
            this.gastroduodenalUlcer = gastroduodenalUlcer;
        }
        public int getGastroduodenalUlcer(){
            return this.gastroduodenalUlcer;
        }
        public void setEsophagitis(int esophagitis){
            this.esophagitis = esophagitis;
        }
        public int getEsophagitis(){
            return this.esophagitis;
        }
        public void setGastritis(int gastritis){
            this.gastritis = gastritis;
        }
        public int getGastritis(){
            return this.gastritis;
        }
        public void setColitis(int colitis){
            this.colitis = colitis;
        }
        public int getColitis(){
            return this.colitis;
        }
        public void setHepatitis(int hepatitis){
            this.hepatitis = hepatitis;
        }
        public int getHepatitis(){
            return this.hepatitis;
        }
        public void setCholecystitis(int cholecystitis){
            this.cholecystitis = cholecystitis;
        }
        public int getCholecystitis(){
            return this.cholecystitis;
        }
        public void setCholelithiasis(int cholelithiasis){
            this.cholelithiasis = cholelithiasis;
        }
        public int getCholelithiasis(){
            return this.cholelithiasis;
        }
        public void setFattyLiver(int fattyLiver){
            this.fattyLiver = fattyLiver;
        }
        public int getFattyLiver(){
            return this.fattyLiver;
        }
        public void setHyperlipidemia(int hyperlipidemia){
            this.hyperlipidemia = hyperlipidemia;
        }
        public int getHyperlipidemia(){
            return this.hyperlipidemia;
        }
        public void setHaemorrhoids(int haemorrhoids){
            this.haemorrhoids = haemorrhoids;
        }
        public int getHaemorrhoids(){
            return this.haemorrhoids;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
 
    }
 
    public static class RespiratorySystemDiseaseClass {
        //COPD
        private int copd;
        //肺炎
        private int pneumonia;
        //支气管炎
        private int bronchitis;
        //支气管哮喘
        private int bronchialAsthma;
        //肺结核
        private int pulmonaryTuberculosis;
        //上呼吸道感染
        private int upperRespiratoryTractInfection;
 
        private int other;
 
        private String otherText;
 
 
        public void setPneumonia(int pneumonia){
            this.pneumonia = pneumonia;
        }
        public int getPneumonia(){
            return this.pneumonia;
        }
        public void setBronchitis(int bronchitis){
            this.bronchitis = bronchitis;
        }
        public int getBronchitis(){
            return this.bronchitis;
        }
        public void setBronchialAsthma(int bronchialAsthma){
            this.bronchialAsthma = bronchialAsthma;
        }
        public int getBronchialAsthma(){
            return this.bronchialAsthma;
        }
        public void setPulmonaryTuberculosis(int pulmonaryTuberculosis){
            this.pulmonaryTuberculosis = pulmonaryTuberculosis;
        }
        public int getPulmonaryTuberculosis(){
            return this.pulmonaryTuberculosis;
        }
        public void setUpperRespiratoryTractInfection(int upperRespiratoryTractInfection){
            this.upperRespiratoryTractInfection = upperRespiratoryTractInfection;
        }
        public int getUpperRespiratoryTractInfection(){
            return this.upperRespiratoryTractInfection;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
        public void setCopd(int copd){
            this.copd = copd;
        }
        public int getCopd(){
            return this.copd;
        }
 
    }
 
    public static class KidneyDiseaseClass {
        //糖尿病肾病
        private int diabetes;
        //肾功能衰竭
        private int renalFailure;
        //急性肾炎
        private int acuteNephritis;
        //慢性肾炎
        private int chronicNephritis;
        //泌尿系统结石
        private int urinaryCalculus;
        //泌尿系统感染
        private int urinaryTractInfection;
        //其他
        private int other;
 
        private String otherText;
 
        public void setDiabetes(int diabetes){
            this.diabetes = diabetes;
        }
        public int getDiabetes(){
            return this.diabetes;
        }
        public void setRenalFailure(int renalFailure){
            this.renalFailure = renalFailure;
        }
        public int getRenalFailure(){
            return this.renalFailure;
        }
        public void setAcuteNephritis(int acuteNephritis){
            this.acuteNephritis = acuteNephritis;
        }
        public int getAcuteNephritis(){
            return this.acuteNephritis;
        }
        public void setChronicNephritis(int chronicNephritis){
            this.chronicNephritis = chronicNephritis;
        }
        public int getChronicNephritis(){
            return this.chronicNephritis;
        }
        public void setUrinaryCalculus(int urinaryCalculus){
            this.urinaryCalculus = urinaryCalculus;
        }
        public int getUrinaryCalculus(){
            return this.urinaryCalculus;
        }
        public void setUrinaryTractInfection(int urinaryTractInfection){
            this.urinaryTractInfection = urinaryTractInfection;
        }
        public int getUrinaryTractInfection(){
            return this.urinaryTractInfection;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
 
    }
 
    public static class OtherDiseaseClass {
        //孕期三个月内
        private int pregnant;
        //病毒性重感
        private int cold;
        //传染性疾病
        private int infectious;
        //肺大疱
        private int pulmonaryBulla;
        //结核性空洞形成的咯血
        private int hemoptysis;
        //未经处理的气胸
        private int pneumothorax;
        //活动性出血
        private int activeBleeding;
 
        private int other;
 
        private String otherText;
 
        public void setPregnant(int pregnant){
            this.pregnant = pregnant;
        }
        public int getPregnant(){
            return this.pregnant;
        }
        public void setCold(int cold){
            this.cold = cold;
        }
        public int getCold(){
            return this.cold;
        }
        public void setInfectious(int infectious){
            this.infectious = infectious;
        }
        public int getInfectious(){
            return this.infectious;
        }
        public void setPulmonaryBulla(int pulmonaryBulla){
            this.pulmonaryBulla = pulmonaryBulla;
        }
        public int getPulmonaryBulla(){
            return this.pulmonaryBulla;
        }
        public void setHemoptysis(int hemoptysis){
            this.hemoptysis = hemoptysis;
        }
        public int getHemoptysis(){
            return this.hemoptysis;
        }
        public void setPneumothorax(int pneumothorax){
            this.pneumothorax = pneumothorax;
        }
        public int getPneumothorax(){
            return this.pneumothorax;
        }
        public void setActiveBleeding(int activeBleeding){
            this.activeBleeding = activeBleeding;
        }
        public int getActiveBleeding(){
            return this.activeBleeding;
        }
        public void setOther(int other){
            this.other = other;
        }
        public int getOther(){
            return this.other;
        }
        public void setOtherText(String otherText){
            this.otherText = otherText;
        }
        public String getOtherText(){
            return this.otherText;
        }
 
    }
}