Jinquan_Ou
2023-03-23 578e1df3a3c32bc0027de169ff6beea8f1527048
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 身体状况疾病表
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@TableName("z_health_info")
public class ZHealthInfo implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 健康表所属者id
     */
    private Integer hid;
 
    /**
     * 体温
     */
    private String temperature;
 
    /**
     * 脉搏
     */
    private String pulse;
 
    /**
     * 呼吸
     */
    private String breathe;
 
    /**
     * 血压
     */
    private String bloodPressure;
 
    /**
     * 体重kg
     */
    private String weight;
 
    /**
     * 四肢活动情况
     */
    private String movement;
 
    /**
     * 皮肤情况
     */
    private String skinType;
 
    /**
     * 心理状态
     */
    private String psychologyType;
 
    /**
     * 面对疾病的态度
     */
    private String attitude;
 
    /**
     * 全身营养状况
     */
    private String nutrition;
 
    /**
     * 脑血管疾病
     */
    private String brain;
 
    /**
     * 心脏疾病
     */
    private String heart;
 
    /**
     * 血管疾病
     */
    private String blood;
 
    /**
     * 消化系统疾病
     */
    private String digestiveSystem;
 
    /**
     * 呼吸系统疾病
     */
    private String breathSystem;
 
    /**
     * 肾脏疾病
     */
    private String kidney;
 
    /**
     * 其他疾病
     */
    private String other;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getHid() {
        return hid;
    }
 
    public void setHid(Integer hid) {
        this.hid = hid;
    }
 
    public String getTemperature() {
        return temperature;
    }
 
    public void setTemperature(String temperature) {
        this.temperature = temperature;
    }
 
    public String getPulse() {
        return pulse;
    }
 
    public void setPulse(String pulse) {
        this.pulse = pulse;
    }
 
    public String getBreathe() {
        return breathe;
    }
 
    public void setBreathe(String breathe) {
        this.breathe = breathe;
    }
 
    public String getBloodPressure() {
        return bloodPressure;
    }
 
    public void setBloodPressure(String bloodPressure) {
        this.bloodPressure = bloodPressure;
    }
 
    public String getWeight() {
        return weight;
    }
 
    public void setWeight(String weight) {
        this.weight = weight;
    }
 
    public String getMovement() {
        return movement;
    }
 
    public void setMovement(String movement) {
        this.movement = movement;
    }
 
    public String getSkinType() {
        return skinType;
    }
 
    public void setSkinType(String skinType) {
        this.skinType = skinType;
    }
 
    public String getPsychologyType() {
        return psychologyType;
    }
 
    public void setPsychologyType(String psychologyType) {
        this.psychologyType = psychologyType;
    }
 
    public String getAttitude() {
        return attitude;
    }
 
    public void setAttitude(String attitude) {
        this.attitude = attitude;
    }
 
    public String getNutrition() {
        return nutrition;
    }
 
    public void setNutrition(String nutrition) {
        this.nutrition = nutrition;
    }
 
    public String getBrain() {
        return brain;
    }
 
    public void setBrain(String brain) {
        this.brain = brain;
    }
 
    public String getHeart() {
        return heart;
    }
 
    public void setHeart(String heart) {
        this.heart = heart;
    }
 
    public String getBlood() {
        return blood;
    }
 
    public void setBlood(String blood) {
        this.blood = blood;
    }
 
    public String getDigestiveSystem() {
        return digestiveSystem;
    }
 
    public void setDigestiveSystem(String digestiveSystem) {
        this.digestiveSystem = digestiveSystem;
    }
 
    public String getBreathSystem() {
        return breathSystem;
    }
 
    public void setBreathSystem(String breathSystem) {
        this.breathSystem = breathSystem;
    }
 
    public String getKidney() {
        return kidney;
    }
 
    public void setKidney(String kidney) {
        this.kidney = kidney;
    }
 
    public String getOther() {
        return other;
    }
 
    public void setOther(String other) {
        this.other = other;
    }
 
    @Override
    public String toString() {
        return "ZHealthInfo{" +
        "id=" + id +
        ", hid=" + hid +
        ", temperature=" + temperature +
        ", pulse=" + pulse +
        ", breathe=" + breathe +
        ", bloodPressure=" + bloodPressure +
        ", weight=" + weight +
        ", movement=" + movement +
        ", skinType=" + skinType +
        ", psychologyType=" + psychologyType +
        ", attitude=" + attitude +
        ", nutrition=" + nutrition +
        ", brain=" + brain +
        ", heart=" + heart +
        ", blood=" + blood +
        ", digestiveSystem=" + digestiveSystem +
        ", breathSystem=" + breathSystem +
        ", kidney=" + kidney +
        ", other=" + other +
        "}";
    }
}