feige
2025-01-16 25e3e85f3d9c0f4a33ac46b576997e70ce6eb2d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 = "";
}