package com.ruoyi.domain.health;
|
|
import lombok.Data;
|
|
/**
|
* @Author Jinquan_Ou
|
* @Description
|
* @Date 2023-07-20 11:22
|
* @Version 1.0.0
|
**/
|
@Data
|
public class NutritionType {
|
private Integer good = 0; //良好
|
private Integer medium = 0; //中等
|
private Integer poor = 0; //欠佳
|
private Integer obesity = 0; //肥胖
|
private Integer thin = 0; //消瘦
|
private Integer fluid = 0; //恶液质
|
private Integer other = 0;//其它
|
private String otherText = "";
|
}
|