zqy
2026-01-02 ed43a26801d6d36e86c187f1c3ece8a16d5806c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.domain.health;
 
import lombok.Data;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-17 14:28
 * @Version 1.0.0
 **/
@Data
public class BloodType {
    private Integer a = 0;
    private Integer b = 0;
    private Integer o = 0;
    private Integer ab = 0;
    private Integer rh = 0;
    private Integer other = 0;
    private String otherText = "";
    private Integer unknown= 0 ;
}