whywhyo
2023-07-29 fc4b360e4ce47c29cc96f941d37d22a225a139b1
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 = "";
}