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 = "";
|
}
|