whywhyo
2023-08-05 1f5b65a28808b0635e1816ca7b4270c94fa7fda9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 = "";
}