zqy
2024-06-10 68f85f044cd71cd3db6514c3bf5b5129ed2e3e78
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 = "";
}