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