feige
2024-10-13 7a4475a4a35c06244875b0b1888bb83c5351ca47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 = "";
 
}