1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.ruoyi.domain.health;
|
| import lombok.Data;
|
| /**
| * @Author Jinquan_Ou
| * @Description
| * @Date 2023-07-21 9:11
| * @Version 1.0.0
| **/
| @Data
| public class VascularDisease {
| private Integer dissectingAneurysm = 0; //夹层动脉瘤
| private Integer arterialOcclusiveDiseases = 0; //动脉闭塞性疾病
| private Integer other = 0;//其它
| private String otherText = "";
| }
|
|