feige
2024-06-16 3ad8fb4e7cc1391e8090f3da6ffa9c48690a12a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-21 8:56
 * @Version 1.0.0
 **/
@Data
public class HeartDisease {
    private Integer myocardialInfarct = 0; //心肌梗塞
    private Integer anginaPectoris = 0; //心绞痛
    private Integer coronaryRevascularization = 0; //冠状动脉血运重建
    private Integer congestiveHeartFailure = 0; //充血性心力衰竭充血性心力衰竭
    private Integer precordialPain = 0; //心前区疼痛
    private Integer other = 0;
    private String otherText = "";
}