feige
2024-06-02 7185db025a772630265cfd1a0410743e6e37ed05
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-19 21:15
 * @Version 1.0.0
 **/
@Data
public class UrineStatus {
    private Integer normal = 0;//正常
    private Integer nightUrinaryRetention = 0;//夜尿潴留
    private Integer incontinence = 0;//失禁
    private Integer enuresis = 0;//遗尿
    private Integer other = 0;//其它
    private String otherText = "";
}