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 = "";
|
}
|