feige
2024-06-10 2f432628a460a73f830c278a7d69e8328767a7b6
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
package com.ruoyi.domain.dto;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.domain.health.AttitudeType;
import com.ruoyi.domain.health.NutritionType;
import com.ruoyi.domain.health.PsychologyType;
import com.ruoyi.domain.health.SkinType;
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-20 11:20
 * @Version 1.0.0
 **/
@Data
public class ZHealthInfoDto {
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private Long uid; // 健康表所属者id
 
    private String temperature; // 体温
 
    private String pulse; // 脉搏
 
    private String breathe; // 呼吸
 
    private String bloodPressure; // 血压
 
    private String weight; // 体重kg
 
    private String movement; // 四肢活动情况
 
    private SkinType skinTypeClass; // 皮肤情况
 
    private PsychologyType psychologyTypeClass; // 心理状态
 
    private AttitudeType attitudeClass; // 面对疾病的态度
 
    private NutritionType nutritionClass; // 全身营养状况
}