feige
2024-02-24 088e8db2bc8f0869bdc2494864992e756eb0e461
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-21 9:21
 * @Version 1.0.0
 **/
@Data
public class KidneyDisease {
    private Integer diabetes = 0;//糖尿病
    private Integer renalFailure = 0;//肾功能衰竭
    private Integer acuteNephritis = 0;//急性肾炎
    private Integer chronicNephritis = 0;//慢性肾炎
    private Integer urinaryCalculus = 0;//泌尿系统结石
    private Integer urinaryTractInfection = 0;//泌尿系统感染
    private Integer other = 0;
    private String otherText = "";
}