package com.ruoyi.domain.health; import lombok.Data; /** * @Author Jinquan_Ou * @Description * @Date 2023-07-21 9:11 * @Version 1.0.0 **/ @Data public class VascularDisease { private Integer dissectingAneurysm = 0; //夹层动脉瘤 private Integer arterialOcclusiveDiseases = 0; //动脉闭塞性疾病 private Integer other = 0;//其它 private String otherText = ""; }