guoshen
2024-07-01 caead5ad019c24b9a7958f01fa663ea8159aee6c
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
package com.application.zhangshi_app_android.bean;
 
/**
 * @author Ljj
 * @date 2023.07.21. 20:06
 * @desc 健康保健生活习惯
 */
public class HealthCareLifeHabitsBean {
    private int id;
    //用户id
    private int uid;
    //饮食习惯(喜)
    private String eatGood;
    //饮食习惯(忌)
    private String eatBad;
    //爱好
    private String hobby;
    //嗜好
    private String addition;
    //大便
    private String stool;
    //小便
    private String urine;
    //睡眠
    private SleepClass sleepClass;
    //大便规律
    private StoolStatusClass stoolStatusClass;
    //小便规律
    private UrineStatusClass urineStatusClass;
    //饮食习惯
    private EatingHabitsClass eatingHabitsClass;
    //生活事件
    private LifeEventClass lifeEventClass;
 
    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 setEatGood(String eatGood){
        this.eatGood = eatGood;
    }
    public String getEatGood(){
        return this.eatGood;
    }
    public void setEatBad(String eatBad){
        this.eatBad = eatBad;
    }
    public String getEatBad(){
        return this.eatBad;
    }
    public void setHobby(String hobby){
        this.hobby = hobby;
    }
    public String getHobby(){
        return this.hobby;
    }
    public void setAddition(String addition){
        this.addition = addition;
    }
    public String getAddition(){
        return this.addition;
    }
    public void setStool(String stool){
        this.stool = stool;
    }
    public String getStool(){
        return this.stool;
    }
    public void setUrine(String urine){
        this.urine = urine;
    }
    public String getUrine(){
        return this.urine;
    }
    public void setSleepClass(SleepClass sleepClass){
        this.sleepClass = sleepClass;
    }
    public SleepClass getSleepClass(){
        return this.sleepClass;
    }
    public void setStoolStatusClass(StoolStatusClass stoolStatusClass){
        this.stoolStatusClass = stoolStatusClass;
    }
    public StoolStatusClass getStoolStatusClass(){
        return this.stoolStatusClass;
    }
    public void setUrineStatusClass(UrineStatusClass urineStatusClass){
        this.urineStatusClass = urineStatusClass;
    }
    public UrineStatusClass getUrineStatusClass(){
        return this.urineStatusClass;
    }
    public void setEatingHabitsClass(EatingHabitsClass eatingHabitsClass){
        this.eatingHabitsClass = eatingHabitsClass;
    }
    public EatingHabitsClass getEatingHabitsClass(){
        return this.eatingHabitsClass;
    }
    public void setLifeEventClass(LifeEventClass lifeEventClass){
        this.lifeEventClass = lifeEventClass;
    }
    public LifeEventClass getLifeEventClass(){
        return this.lifeEventClass;
    }
    public static class SleepClass {
        //良好 1 是 0 否
        private int good;
        //一般 1 是 0 否
        private int general;
        //易醒 1 是 0 否
        private int easyWake;
        //多梦 1 是 0 否
        private int dreaminess;
        //失眠 1 是 0 否
        private int sleepless;
        //打鼾 1 是 0 否
        private int snore;
        //睡不熟 1 是 0 否
        private int wakefulness;
        //其他 1 是 0 否
        private int other;
 
        private String otherText;
 
        public void setGood(int good){
            this.good = good;
        }
        public int getGood(){
            return this.good;
        }
        public void setGeneral(int general){
            this.general = general;
        }
        public int getGeneral(){
            return this.general;
        }
        public void setEasyWake(int easyWake){
            this.easyWake = easyWake;
        }
        public int getEasyWake(){
            return this.easyWake;
        }
        public void setDreaminess(int dreaminess){
            this.dreaminess = dreaminess;
        }
        public int getDreaminess(){
            return this.dreaminess;
        }
        public void setSleepless(int sleepless){
            this.sleepless = sleepless;
        }
        public int getSleepless(){
            return this.sleepless;
        }
        public void setSnore(int snore){
            this.snore = snore;
        }
        public int getSnore(){
            return this.snore;
        }
        public void setWakefulness(int wakefulness){
            this.wakefulness = wakefulness;
        }
        public int getWakefulness(){
            return this.wakefulness;
        }
        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 StoolStatusClass {
        //正常 1 是 0 否
        private int normal;
        //秘结 1 是 0 否
        private int constipation;
        //腹泻 1 是 0 否
        private int diarrhea;
        //失禁 1 是 0 否
        private int incontinence;
        private int other;
        private String otherText;
 
        public void setNormal(int normal){
            this.normal = normal;
        }
        public int getNormal(){
            return this.normal;
        }
        public void setConstipation(int constipation){
            this.constipation = constipation;
        }
        public int getConstipation(){
            return this.constipation;
        }
        public void setDiarrhea(int diarrhea){
            this.diarrhea = diarrhea;
        }
        public int getDiarrhea(){
            return this.diarrhea;
        }
        public void setIncontinence(int incontinence){
            this.incontinence = incontinence;
        }
        public int getIncontinence(){
            return this.incontinence;
        }
        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 UrineStatusClass {
        //正常 1 是 0 否
        private int normal;
        //夜尿潴留 1 是 0 否
        private int nightUrinaryRetention;
        //失禁 1 是 0 否
        private int incontinence;
        //遗尿 1 是 0 否
        private int enuresis;
        private int other;
        private String otherText;
 
        public void setNormal(int normal){
            this.normal = normal;
        }
        public int getNormal(){
            return this.normal;
        }
        public void setNightUrinaryRetention(int nightUrinaryRetention){
            this.nightUrinaryRetention = nightUrinaryRetention;
        }
        public int getNightUrinaryRetention(){
            return this.nightUrinaryRetention;
        }
        public void setIncontinence(int incontinence){
            this.incontinence = incontinence;
        }
        public int getIncontinence(){
            return this.incontinence;
        }
        public void setEnuresis(int enuresis){
            this.enuresis = enuresis;
        }
        public int getEnuresis(){
            return this.enuresis;
        }
        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 EatingHabitsClass {
        //荤素均匀 1 是 0 否
        private int uniformityOfMeatAndVegetables;
        //荤食为主 1 是 0 否
        private int meat;
        //素食为主 1 是 0 否
        private int vegetable;
        //嗜盐 1 是 0 否
        private int salt;
        //嗜油 1 是 0 否
        private int oil;
        //嗜糖 1 是 0 否
        private int sugar;
        //嗜酒 1 是 0 否
        private int other;
 
        private String otherText;
 
        public void setUniformityOfMeatAndVegetables(int uniformityOfMeatAndVegetables){
            this.uniformityOfMeatAndVegetables = uniformityOfMeatAndVegetables;
        }
        public int getUniformityOfMeatAndVegetables(){
            return this.uniformityOfMeatAndVegetables;
        }
        public void setMeat(int meat){
            this.meat = meat;
        }
        public int getMeat(){
            return this.meat;
        }
        public void setVegetable(int vegetable){
            this.vegetable = vegetable;
        }
        public int getVegetable(){
            return this.vegetable;
        }
        public void setSalt(int salt){
            this.salt = salt;
        }
        public int getSalt(){
            return this.salt;
        }
        public void setOil(int oil){
            this.oil = oil;
        }
        public int getOil(){
            return this.oil;
        }
        public void setSugar(int sugar){
            this.sugar = sugar;
        }
        public int getSugar(){
            return this.sugar;
        }
        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 LifeEventClass {
        //丧偶 1 是 0 否
        private int bereave;
        //独居 1 是 0 否
        private int liveAlone;
        //一年内住院 1 是 0 否
        private int inHospital;
        //子女分家 1 是 0 否
        private int divide;
 
        private int other;
 
        private String otherText;
 
        public void setBereave(int bereave){
            this.bereave = bereave;
        }
        public int getBereave(){
            return this.bereave;
        }
        public void setLiveAlone(int liveAlone){
            this.liveAlone = liveAlone;
        }
        public int getLiveAlone(){
            return this.liveAlone;
        }
        public void setInHospital(int inHospital){
            this.inHospital = inHospital;
        }
        public int getInHospital(){
            return this.inHospital;
        }
        public void setDivide(int divide){
            this.divide = divide;
        }
        public int getDivide(){
            return this.divide;
        }
        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;
        }
 
    }
 
 
}