package com.ruoyi.domain.health; import lombok.Data; /** * @Author Jinquan_Ou * @Description * @Date 2023-07-17 14:29 * @Version 1.0.0 **/ @Data public class AllergyHistory { private Integer medicine = 0; private Integer food = 0; private Integer other = 0; private String otherText = ""; }