zqy
2024-07-30 c35d9c6311b6f9ef75b49559a5c6db75e0a43ac6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 = "";
}