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