package com.ruoyi.domain.health;
|
|
import lombok.Data;
|
|
/**
|
* @Author Jinquan_Ou
|
* @Description
|
* @Date 2023-07-17 14:31
|
* @Version 1.0.0
|
**/
|
@Data
|
public class GeneticDisease {
|
private Integer hypertension = 0;//高血压
|
private Integer diabetes = 0;//糖尿病
|
private Integer tumor = 0;//肿瘤
|
private Integer other = 0;//其它
|
private String otherText = "";
|
}
|