package com.application.zhangshi_app_android.bean;
|
|
/**
|
* @author Ljj
|
* @date 2023.07.21. 20:07
|
* @desc 健康保健现存问题
|
*/
|
public class HealthCareExistingProblemsBean {
|
//脑血管疾病
|
private BrainDiseaseClass brainDiseaseClass;
|
//心脏疾病
|
private HeartDiseaseClass heartDiseaseClass;
|
//血管疾病
|
private VascularDiseaseClass vascularDiseaseClass;
|
//消化系统疾病
|
private DigestiveSystemDiseaseClass digestiveSystemDiseaseClass;
|
//呼吸系统疾病
|
private RespiratorySystemDiseaseClass respiratorySystemDiseaseClass;
|
//肾脏疾病
|
private KidneyDiseaseClass kidneyDiseaseClass;
|
//内分泌系统疾病
|
private OtherDiseaseClass otherDiseaseClass;
|
|
public void setBrainDiseaseClass(BrainDiseaseClass brainDiseaseClass){
|
this.brainDiseaseClass = brainDiseaseClass;
|
}
|
public BrainDiseaseClass getBrainDiseaseClass(){
|
return this.brainDiseaseClass;
|
}
|
public void setHeartDiseaseClass(HeartDiseaseClass heartDiseaseClass){
|
this.heartDiseaseClass = heartDiseaseClass;
|
}
|
public HeartDiseaseClass getHeartDiseaseClass(){
|
return this.heartDiseaseClass;
|
}
|
public void setVascularDiseaseClass(VascularDiseaseClass vascularDiseaseClass){
|
this.vascularDiseaseClass = vascularDiseaseClass;
|
}
|
public VascularDiseaseClass getVascularDiseaseClass(){
|
return this.vascularDiseaseClass;
|
}
|
public void setDigestiveSystemDiseaseClass(DigestiveSystemDiseaseClass digestiveSystemDiseaseClass){
|
this.digestiveSystemDiseaseClass = digestiveSystemDiseaseClass;
|
}
|
public DigestiveSystemDiseaseClass getDigestiveSystemDiseaseClass(){
|
return this.digestiveSystemDiseaseClass;
|
}
|
public void setRespiratorySystemDiseaseClass(RespiratorySystemDiseaseClass respiratorySystemDiseaseClass){
|
this.respiratorySystemDiseaseClass = respiratorySystemDiseaseClass;
|
}
|
public RespiratorySystemDiseaseClass getRespiratorySystemDiseaseClass(){
|
return this.respiratorySystemDiseaseClass;
|
}
|
public void setKidneyDiseaseClass(KidneyDiseaseClass kidneyDiseaseClass){
|
this.kidneyDiseaseClass = kidneyDiseaseClass;
|
}
|
public KidneyDiseaseClass getKidneyDiseaseClass(){
|
return this.kidneyDiseaseClass;
|
}
|
public void setOtherDiseaseClass(OtherDiseaseClass otherDiseaseClass){
|
this.otherDiseaseClass = otherDiseaseClass;
|
}
|
public OtherDiseaseClass getOtherDiseaseClass(){
|
return this.otherDiseaseClass;
|
}
|
public static class BrainDiseaseClass {
|
//缺血性脑卒中
|
private int ischemicStroke;
|
//脑出血
|
private int cerebralHemorrhage;
|
//蛛网膜下腔出血
|
private int subarachnoidHemorrhage;
|
//短暂性脑缺血发作
|
private int tia;
|
//其他
|
private int other;
|
|
private String otherText;
|
|
|
public void setIschemicStroke(int ischemicStroke){
|
this.ischemicStroke = ischemicStroke;
|
}
|
public int getIschemicStroke(){
|
return this.ischemicStroke;
|
}
|
public void setCerebralHemorrhage(int cerebralHemorrhage){
|
this.cerebralHemorrhage = cerebralHemorrhage;
|
}
|
public int getCerebralHemorrhage(){
|
return this.cerebralHemorrhage;
|
}
|
public void setSubarachnoidHemorrhage(int subarachnoidHemorrhage){
|
this.subarachnoidHemorrhage = subarachnoidHemorrhage;
|
}
|
public int getSubarachnoidHemorrhage(){
|
return this.subarachnoidHemorrhage;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
public void setTia(int tia){
|
this.tia = tia;
|
}
|
public int getTia(){
|
return this.tia;
|
}
|
|
}
|
|
public static class HeartDiseaseClass {
|
//心肌梗塞
|
private int myocardialInfarct;
|
//心绞痛
|
private int anginaPectoris;
|
//冠状动脉血运重建
|
private int coronaryRevascularization;
|
//充血性心力衰竭
|
private int congestiveHeartFailure;
|
//心前区疼痛
|
private int precordialPain;
|
//其他
|
private int other;
|
|
private String otherText;
|
|
public void setMyocardialInfarct(int myocardialInfarct){
|
this.myocardialInfarct = myocardialInfarct;
|
}
|
public int getMyocardialInfarct(){
|
return this.myocardialInfarct;
|
}
|
public void setAnginaPectoris(int anginaPectoris){
|
this.anginaPectoris = anginaPectoris;
|
}
|
public int getAnginaPectoris(){
|
return this.anginaPectoris;
|
}
|
public void setCoronaryRevascularization(int coronaryRevascularization){
|
this.coronaryRevascularization = coronaryRevascularization;
|
}
|
public int getCoronaryRevascularization(){
|
return this.coronaryRevascularization;
|
}
|
public void setCongestiveHeartFailure(int congestiveHeartFailure){
|
this.congestiveHeartFailure = congestiveHeartFailure;
|
}
|
public int getCongestiveHeartFailure(){
|
return this.congestiveHeartFailure;
|
}
|
public void setPrecordialPain(int precordialPain){
|
this.precordialPain = precordialPain;
|
}
|
public int getPrecordialPain(){
|
return this.precordialPain;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
|
}
|
|
public static class VascularDiseaseClass {
|
//夹层动脉瘤
|
private int dissectingAneurysm;
|
//动脉闭塞性疾病
|
private int arterialOcclusiveDiseases;
|
//其他
|
private int other;
|
|
private String otherText;
|
|
public void setDissectingAneurysm(int dissectingAneurysm){
|
this.dissectingAneurysm = dissectingAneurysm;
|
}
|
public int getDissectingAneurysm(){
|
return this.dissectingAneurysm;
|
}
|
public void setArterialOcclusiveDiseases(int arterialOcclusiveDiseases){
|
this.arterialOcclusiveDiseases = arterialOcclusiveDiseases;
|
}
|
public int getArterialOcclusiveDiseases(){
|
return this.arterialOcclusiveDiseases;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
|
}
|
|
public static class DigestiveSystemDiseaseClass {
|
//胃十二指肠溃疡
|
private int gastroduodenalUlcer;
|
//反流性食管炎
|
private int esophagitis;
|
//慢性胃炎
|
private int gastritis;
|
//溃疡性结肠炎
|
private int colitis;
|
//肝炎
|
private int hepatitis;
|
//胆囊炎
|
private int cholecystitis;
|
//胆结石
|
private int cholelithiasis;
|
//脂肪肝
|
private int fattyLiver;
|
//高脂血症
|
private int hyperlipidemia;
|
//痔疮
|
private int haemorrhoids;
|
//其他
|
private int other;
|
|
private String otherText;
|
|
public void setGastroduodenalUlcer(int gastroduodenalUlcer){
|
this.gastroduodenalUlcer = gastroduodenalUlcer;
|
}
|
public int getGastroduodenalUlcer(){
|
return this.gastroduodenalUlcer;
|
}
|
public void setEsophagitis(int esophagitis){
|
this.esophagitis = esophagitis;
|
}
|
public int getEsophagitis(){
|
return this.esophagitis;
|
}
|
public void setGastritis(int gastritis){
|
this.gastritis = gastritis;
|
}
|
public int getGastritis(){
|
return this.gastritis;
|
}
|
public void setColitis(int colitis){
|
this.colitis = colitis;
|
}
|
public int getColitis(){
|
return this.colitis;
|
}
|
public void setHepatitis(int hepatitis){
|
this.hepatitis = hepatitis;
|
}
|
public int getHepatitis(){
|
return this.hepatitis;
|
}
|
public void setCholecystitis(int cholecystitis){
|
this.cholecystitis = cholecystitis;
|
}
|
public int getCholecystitis(){
|
return this.cholecystitis;
|
}
|
public void setCholelithiasis(int cholelithiasis){
|
this.cholelithiasis = cholelithiasis;
|
}
|
public int getCholelithiasis(){
|
return this.cholelithiasis;
|
}
|
public void setFattyLiver(int fattyLiver){
|
this.fattyLiver = fattyLiver;
|
}
|
public int getFattyLiver(){
|
return this.fattyLiver;
|
}
|
public void setHyperlipidemia(int hyperlipidemia){
|
this.hyperlipidemia = hyperlipidemia;
|
}
|
public int getHyperlipidemia(){
|
return this.hyperlipidemia;
|
}
|
public void setHaemorrhoids(int haemorrhoids){
|
this.haemorrhoids = haemorrhoids;
|
}
|
public int getHaemorrhoids(){
|
return this.haemorrhoids;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
|
}
|
|
public static class RespiratorySystemDiseaseClass {
|
//COPD
|
private int copd;
|
//肺炎
|
private int pneumonia;
|
//支气管炎
|
private int bronchitis;
|
//支气管哮喘
|
private int bronchialAsthma;
|
//肺结核
|
private int pulmonaryTuberculosis;
|
//上呼吸道感染
|
private int upperRespiratoryTractInfection;
|
|
private int other;
|
|
private String otherText;
|
|
|
public void setPneumonia(int pneumonia){
|
this.pneumonia = pneumonia;
|
}
|
public int getPneumonia(){
|
return this.pneumonia;
|
}
|
public void setBronchitis(int bronchitis){
|
this.bronchitis = bronchitis;
|
}
|
public int getBronchitis(){
|
return this.bronchitis;
|
}
|
public void setBronchialAsthma(int bronchialAsthma){
|
this.bronchialAsthma = bronchialAsthma;
|
}
|
public int getBronchialAsthma(){
|
return this.bronchialAsthma;
|
}
|
public void setPulmonaryTuberculosis(int pulmonaryTuberculosis){
|
this.pulmonaryTuberculosis = pulmonaryTuberculosis;
|
}
|
public int getPulmonaryTuberculosis(){
|
return this.pulmonaryTuberculosis;
|
}
|
public void setUpperRespiratoryTractInfection(int upperRespiratoryTractInfection){
|
this.upperRespiratoryTractInfection = upperRespiratoryTractInfection;
|
}
|
public int getUpperRespiratoryTractInfection(){
|
return this.upperRespiratoryTractInfection;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
public void setCopd(int copd){
|
this.copd = copd;
|
}
|
public int getCopd(){
|
return this.copd;
|
}
|
|
}
|
|
public static class KidneyDiseaseClass {
|
//糖尿病肾病
|
private int diabetes;
|
//肾功能衰竭
|
private int renalFailure;
|
//急性肾炎
|
private int acuteNephritis;
|
//慢性肾炎
|
private int chronicNephritis;
|
//泌尿系统结石
|
private int urinaryCalculus;
|
//泌尿系统感染
|
private int urinaryTractInfection;
|
//其他
|
private int other;
|
|
private String otherText;
|
|
public void setDiabetes(int diabetes){
|
this.diabetes = diabetes;
|
}
|
public int getDiabetes(){
|
return this.diabetes;
|
}
|
public void setRenalFailure(int renalFailure){
|
this.renalFailure = renalFailure;
|
}
|
public int getRenalFailure(){
|
return this.renalFailure;
|
}
|
public void setAcuteNephritis(int acuteNephritis){
|
this.acuteNephritis = acuteNephritis;
|
}
|
public int getAcuteNephritis(){
|
return this.acuteNephritis;
|
}
|
public void setChronicNephritis(int chronicNephritis){
|
this.chronicNephritis = chronicNephritis;
|
}
|
public int getChronicNephritis(){
|
return this.chronicNephritis;
|
}
|
public void setUrinaryCalculus(int urinaryCalculus){
|
this.urinaryCalculus = urinaryCalculus;
|
}
|
public int getUrinaryCalculus(){
|
return this.urinaryCalculus;
|
}
|
public void setUrinaryTractInfection(int urinaryTractInfection){
|
this.urinaryTractInfection = urinaryTractInfection;
|
}
|
public int getUrinaryTractInfection(){
|
return this.urinaryTractInfection;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
|
}
|
|
public static class OtherDiseaseClass {
|
//孕期三个月内
|
private int pregnant;
|
//病毒性重感
|
private int cold;
|
//传染性疾病
|
private int infectious;
|
//肺大疱
|
private int pulmonaryBulla;
|
//结核性空洞形成的咯血
|
private int hemoptysis;
|
//未经处理的气胸
|
private int pneumothorax;
|
//活动性出血
|
private int activeBleeding;
|
|
private int other;
|
|
private String otherText;
|
|
public void setPregnant(int pregnant){
|
this.pregnant = pregnant;
|
}
|
public int getPregnant(){
|
return this.pregnant;
|
}
|
public void setCold(int cold){
|
this.cold = cold;
|
}
|
public int getCold(){
|
return this.cold;
|
}
|
public void setInfectious(int infectious){
|
this.infectious = infectious;
|
}
|
public int getInfectious(){
|
return this.infectious;
|
}
|
public void setPulmonaryBulla(int pulmonaryBulla){
|
this.pulmonaryBulla = pulmonaryBulla;
|
}
|
public int getPulmonaryBulla(){
|
return this.pulmonaryBulla;
|
}
|
public void setHemoptysis(int hemoptysis){
|
this.hemoptysis = hemoptysis;
|
}
|
public int getHemoptysis(){
|
return this.hemoptysis;
|
}
|
public void setPneumothorax(int pneumothorax){
|
this.pneumothorax = pneumothorax;
|
}
|
public int getPneumothorax(){
|
return this.pneumothorax;
|
}
|
public void setActiveBleeding(int activeBleeding){
|
this.activeBleeding = activeBleeding;
|
}
|
public int getActiveBleeding(){
|
return this.activeBleeding;
|
}
|
public void setOther(int other){
|
this.other = other;
|
}
|
public int getOther(){
|
return this.other;
|
}
|
public void setOtherText(String otherText){
|
this.otherText = otherText;
|
}
|
public String getOtherText(){
|
return this.otherText;
|
}
|
|
}
|
}
|