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