feige
2024-11-20 b10f260189e5db5b89d9a85ce4fb08984d2aae2a
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 = "";
}