package com.ruoyi.domain.health;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @Author Jinquan_Ou
|
* @Description
|
* @Date 2023-07-19 21:12
|
* @Version 1.0.0
|
**/
|
@Data
|
public class StoolStatus{
|
private Integer normal = 0;//正常
|
private Integer constipation = 0;//便秘
|
private Integer diarrhea = 0;//腹泻
|
private Integer incontinence = 0;//失禁
|
private Integer other = 0;//其它
|
private String otherText = "";
|
|
}
|