whywhyo
2023-09-05 3f50e9e810b478dbbd3225d9e5cedf47f586b69b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 PsychologyType {
    private Integer optimistic = 0; //开朗
    private Integer worry = 0; //焦虑
    private Integer fear = 0; //忧愁恐惧
    private Integer suspicion = 0; //猜疑
    private Integer constrain = 0; //压抑
    private Integer miss = 0; //思念
    private Integer other = 0;//其它
    private String otherText = "";
}