zqy
2025-06-09 d523a67dd8e2a9dbc1cdd25b40ec2ae8497f0750
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-19 21:24
 * @Version 1.0.0
 **/
@Data
public class LifeEvent {
    private Integer bereave = 0;
    private Integer liveAlone = 0;
    private Integer inHospital = 0;
    private Integer divide = 0;
    private Integer other = 0;//其它
    private String otherText = "";
}