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
package com.application.zhangshi_app_android.bean;
 
/**
 * @author Ljj
 * @date 2023.07.21. 20:07
 * @desc 健康保健护理查体
 */
public class HealthCareNursingExaminationBean {
    //id
    private int id;
    //用户id
    private int uid;
    //体温
    private String temperature;
    //脉搏
    private String pulse;
    //
    private String breathe;
    //血压
    private String bloodPressure;
    //体重
    private String weight;
    //四肢活动
    private String movement;
    //皮肤粘膜
    private SkinTypeClass skinTypeClass;
    //心理状态
    private PsychologyTypeClass psychologyTypeClass;
    //病理态度
    private AttitudeClass attitudeClass;
    //营养状况
    private NutritionClass nutritionClass;
 
    public void setId(int id){
        this.id = id;
    }
    public int getId(){
        return this.id;
    }
    public void setUid(int uid){
        this.uid = uid;
    }
    public int getUid(){
        return this.uid;
    }
    public void setTemperature(String temperature){
        this.temperature = temperature;
    }
    public String getTemperature(){
        return this.temperature;
    }
    public void setPulse(String pulse){
        this.pulse = pulse;
    }
    public String getPulse(){
        return this.pulse;
    }
    public void setBreathe(String breathe){
        this.breathe = breathe;
    }
    public String getBreathe(){
        return this.breathe;
    }
    public void setBloodPressure(String bloodPressure){
        this.bloodPressure = bloodPressure;
    }
    public String getBloodPressure(){
        return this.bloodPressure;
    }
    public void setWeight(String weight){
        this.weight = weight;
    }
    public String getWeight(){
        return this.weight;
    }
    public void setMovement(String movement){
        this.movement = movement;
    }
    public String getMovement(){
        return this.movement;
    }
    public void setSkinTypeClass(SkinTypeClass skinTypeClass){
        this.skinTypeClass = skinTypeClass;
    }
    public SkinTypeClass getSkinTypeClass(){
        return this.skinTypeClass;
    }
    public void setPsychologyTypeClass(PsychologyTypeClass psychologyTypeClass){
        this.psychologyTypeClass = psychologyTypeClass;
    }
    public PsychologyTypeClass getPsychologyTypeClass(){
        return this.psychologyTypeClass;
    }
    public void setAttitudeClass(AttitudeClass attitudeClass){
        this.attitudeClass = attitudeClass;
    }
    public AttitudeClass getAttitudeClass(){
        return this.attitudeClass;
    }
    public void setNutritionClass(NutritionClass nutritionClass){
        this.nutritionClass = nutritionClass;
    }
    public NutritionClass getNutritionClass(){
        return this.nutritionClass;
    }
    public static class SkinTypeClass {
        //青春痘 0否 1是
        private int acne;
        //牛皮癣 0否 1是
        private int psoriasis;
        //色素沉着 0否 1是
        private int color;
        //水肿 0否 1是
        private int edema;
        //皮疹 0否 1是
        private int rash;
        //瘀斑 0否 1是
        private int bloodStasis;
        //皮下结节或肿块 0否 1是
        private int snom;
        //蜘蛛痣 0否 1是
        private int nevus;
        //溃疡 0否 1是
        private int ulcer;
        //其他 0否 1是
        private int other;
 
        private String otherText;
 
        public void setAcne(int acne){
            this.acne = acne;
        }
        public int getAcne(){
            return this.acne;
        }
        public void setPsoriasis(int psoriasis){
            this.psoriasis = psoriasis;
        }
        public int getPsoriasis(){
            return this.psoriasis;
        }
        public void setColor(int color){
            this.color = color;
        }
        public int getColor(){
            return this.color;
        }
        public void setEdema(int edema){
            this.edema = edema;
        }
        public int getEdema(){
            return this.edema;
        }
        public void setRash(int rash){
            this.rash = rash;
        }
        public int getRash(){
            return this.rash;
        }
        public void setBloodStasis(int bloodStasis){
            this.bloodStasis = bloodStasis;
        }
        public int getBloodStasis(){
            return this.bloodStasis;
        }
        public void setSnom(int snom){
            this.snom = snom;
        }
        public int getSnom(){
            return this.snom;
        }
        public void setNevus(int nevus){
            this.nevus = nevus;
        }
        public int getNevus(){
            return this.nevus;
        }
        public void setUlcer(int ulcer){
            this.ulcer = ulcer;
        }
        public int getUlcer(){
            return this.ulcer;
        }
        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 PsychologyTypeClass {
        //开朗 0否 1是
        private int optimistic;
        //焦虑 0否 1是
        private int worry;
        //忧愁恐惧 0否 1是
        private int fear;
        //猜疑 0否 1是
        private int suspicion;
        //压抑 0否 1是
        private int constrain;
        //思念 0否 1是
        private int miss;
 
        private int other;
 
        private String otherText;
 
        public void setOptimistic(int optimistic){
            this.optimistic = optimistic;
        }
        public int getOptimistic(){
            return this.optimistic;
        }
        public void setWorry(int worry){
            this.worry = worry;
        }
        public int getWorry(){
            return this.worry;
        }
        public void setFear(int fear){
            this.fear = fear;
        }
        public int getFear(){
            return this.fear;
        }
        public void setSuspicion(int suspicion){
            this.suspicion = suspicion;
        }
        public int getSuspicion(){
            return this.suspicion;
        }
        public void setConstrain(int constrain){
            this.constrain = constrain;
        }
        public int getConstrain(){
            return this.constrain;
        }
        public void setMiss(int miss){
            this.miss = miss;
        }
        public int getMiss(){
            return this.miss;
        }
        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 AttitudeClass {
        //明朗 0否 1是
        private int lucidity;
        //不了解 0否 1是
        private int unknown;
        //正常 0否 1是
        private int normal;
        //不正常 0否 1是
        private int abnormal;
        //其他 0否 1是
        private int other;
 
        private String otherText;
 
        public void setLucidity(int lucidity){
            this.lucidity = lucidity;
        }
        public int getLucidity(){
            return this.lucidity;
        }
        public void setUnknown(int unknown){
            this.unknown = unknown;
        }
        public int getUnknown(){
            return this.unknown;
        }
        public void setNormal(int normal){
            this.normal = normal;
        }
        public int getNormal(){
            return this.normal;
        }
        public void setAbnormal(int abnormal){
            this.abnormal = abnormal;
        }
        public int getAbnormal(){
            return this.abnormal;
        }
        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 NutritionClass {
        //良好 0否 1是
        private int good;
        //中等 0否 1是
        private int medium;
        //欠佳 0否 1是
        private int poor;
        //肥胖 0否 1是
        private int obesity;
        //消瘦 0否 1是
        private int thin;
        //恶液质 0否 1是
        private int fluid;
 
        private int other;
 
        private String otherText;
 
        public void setGood(int good){
            this.good = good;
        }
        public int getGood(){
            return this.good;
        }
        public void setMedium(int medium){
            this.medium = medium;
        }
        public int getMedium(){
            return this.medium;
        }
        public void setPoor(int poor){
            this.poor = poor;
        }
        public int getPoor(){
            return this.poor;
        }
        public void setObesity(int obesity){
            this.obesity = obesity;
        }
        public int getObesity(){
            return this.obesity;
        }
        public void setThin(int thin){
            this.thin = thin;
        }
        public int getThin(){
            return this.thin;
        }
        public void setFluid(int fluid){
            this.fluid = fluid;
        }
        public int getFluid(){
            return this.fluid;
        }
        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;
        }
 
    }
 
}