zqy
2024-06-10 68f85f044cd71cd3db6514c3bf5b5129ed2e3e78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-21 8:53
 * @Version 1.0.0
 **/
@Data
public class BrainDisease {
    private Integer ischemicStroke = 0;//缺血性卒中
    private Integer cerebralHemorrhage = 0;//脑出血
    private Integer subarachnoidHemorrhage = 0;//蛛网膜下腔出血
    private Integer TIA = 0;//短暂性脑缺血发作
    private Integer other = 0;
    private String otherText = "";
}