whywhyo
2023-07-21 d2a1957ec40c70c696ab3260d7f7df90c4539589
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-21 9:08
 * @Version 1.0.0
 **/
@Data
public class RespiratorySystemDisease {
    private Integer COPD = 0; //COPD
    private Integer pneumonia = 0; //肺炎
    private Integer bronchitis = 0; //支气管炎
    private Integer bronchialAsthma = 0; //支气管哮喘
    private Integer pulmonaryTuberculosis = 0; //肺结核
    private Integer upperRespiratoryTractInfection = 0; //上呼吸道感染
    private Integer other = 0;//其它
    private String otherText = "";
}