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 AttitudeType {
|
private Integer lucidity = 0; //明朗
|
private Integer unknown = 0; //不了解
|
private Integer normal = 0; //正常
|
private Integer abnormal = 0; //不正常
|
private Integer other = 0;//其他
|
private String otherText = "";
|
}
|