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