zqy
2024-10-03 5a0f89efcca725abd41381fd74358e47b4ff3909
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-17 13:17
 * @Version 1.0.0
 **/
@Data
public class ZHealthNow implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private Long uid; // 用户id
 
    private String brain; // 脑血管疾病
 
    private String heart; // 心脏疾病
 
    private String blood; // 血管疾病
 
    private String digestiveSystem; // 消化系统疾病
 
    private String breathSystem; // 呼吸系统疾病
 
    private String kidney; // 肾脏疾病
 
    private String other; // 其他疾病
}