package com.application.zhangshi_app_android.bean;
|
|
/**
|
* @author Ljj
|
* @date 2023.07.21. 20:06
|
* @desc 健康保健生活习惯
|
*/
|
public class HealthCareLifeHabitsBean {
|
private int id;
|
//用户id
|
private int uid;
|
//饮食习惯(喜)
|
private String eatGood;
|
//饮食习惯(忌)
|
private String eatBad;
|
//爱好
|
private String hobby;
|
//嗜好
|
private String addition;
|
//大便
|
private String stool;
|
//小便
|
private String urine;
|
//睡眠
|
private SleepClass sleepClass;
|
//大便规律
|
private StoolStatusClass stoolStatusClass;
|
//小便规律
|
private UrineStatusClass urineStatusClass;
|
//饮食习惯
|
private EatingHabitsClass eatingHabitsClass;
|
//生活事件
|
private LifeEventClass lifeEventClass;
|
|
public void setId(int id){
|
this.id = id;
|
}
|
public int getId(){
|
return this.id;
|
}
|
public void setUid(int uid){
|
this.uid = uid;
|
}
|
public int getUid(){
|
return this.uid;
|
}
|
public void setEatGood(String eatGood){
|
this.eatGood = eatGood;
|
}
|
public String getEatGood(){
|
return this.eatGood;
|
}
|
public void setEatBad(String eatBad){
|
this.eatBad = eatBad;
|
}
|
public String getEatBad(){
|
return this.eatBad;
|
}
|
public void setHobby(String hobby){
|
this.hobby = hobby;
|
}
|
public String getHobby(){
|
return this.hobby;
|
}
|
public void setAddition(String addition){
|
this.addition = addition;
|
}
|
public String getAddition(){
|
return this.addition;
|
}
|
public void setStool(String stool){
|
this.stool = stool;
|
}
|
public String getStool(){
|
return this.stool;
|
}
|
public void setUrine(String urine){
|
this.urine = urine;
|
}
|
public String getUrine(){
|
return this.urine;
|
}
|
public void setSleepClass(SleepClass sleepClass){
|
this.sleepClass = sleepClass;
|
}
|
public SleepClass getSleepClass(){
|
return this.sleepClass;
|
}
|
public void setStoolStatusClass(StoolStatusClass stoolStatusClass){
|
this.stoolStatusClass = stoolStatusClass;
|
}
|
public StoolStatusClass getStoolStatusClass(){
|
return this.stoolStatusClass;
|
}
|
public void setUrineStatusClass(UrineStatusClass urineStatusClass){
|
this.urineStatusClass = urineStatusClass;
|
}
|
public UrineStatusClass getUrineStatusClass(){
|
return this.urineStatusClass;
|
}
|
public void setEatingHabitsClass(EatingHabitsClass eatingHabitsClass){
|
this.eatingHabitsClass = eatingHabitsClass;
|
}
|
public EatingHabitsClass getEatingHabitsClass(){
|
return this.eatingHabitsClass;
|
}
|
public void setLifeEventClass(LifeEventClass lifeEventClass){
|
this.lifeEventClass = lifeEventClass;
|
}
|
public LifeEventClass getLifeEventClass(){
|
return this.lifeEventClass;
|
}
|
public static class SleepClass {
|
//良好 1 是 0 否
|
private int good;
|
//一般 1 是 0 否
|
private int general;
|
//易醒 1 是 0 否
|
private int easyWake;
|
//多梦 1 是 0 否
|
private int dreaminess;
|
//失眠 1 是 0 否
|
private int sleepless;
|
//打鼾 1 是 0 否
|
private int snore;
|
//睡不熟 1 是 0 否
|
private int wakefulness;
|
//其他 1 是 0 否
|
private int other;
|
|
private String otherText;
|
|
public void setGood(int good){
|
this.good = good;
|
}
|
public int getGood(){
|
return this.good;
|
}
|
public void setGeneral(int general){
|
this.general = general;
|
}
|
public int getGeneral(){
|
return this.general;
|
}
|
public void setEasyWake(int easyWake){
|
this.easyWake = easyWake;
|
}
|
public int getEasyWake(){
|
return this.easyWake;
|
}
|
public void setDreaminess(int dreaminess){
|
this.dreaminess = dreaminess;
|
}
|
public int getDreaminess(){
|
return this.dreaminess;
|
}
|
public void setSleepless(int sleepless){
|
this.sleepless = sleepless;
|
}
|
public int getSleepless(){
|
return this.sleepless;
|
}
|
public void setSnore(int snore){
|
this.snore = snore;
|
}
|
public int getSnore(){
|
return this.snore;
|
}
|
public void setWakefulness(int wakefulness){
|
this.wakefulness = wakefulness;
|
}
|
public int getWakefulness(){
|
return this.wakefulness;
|
}
|
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 StoolStatusClass {
|
//正常 1 是 0 否
|
private int normal;
|
//秘结 1 是 0 否
|
private int constipation;
|
//腹泻 1 是 0 否
|
private int diarrhea;
|
//失禁 1 是 0 否
|
private int incontinence;
|
private int other;
|
private String otherText;
|
|
public void setNormal(int normal){
|
this.normal = normal;
|
}
|
public int getNormal(){
|
return this.normal;
|
}
|
public void setConstipation(int constipation){
|
this.constipation = constipation;
|
}
|
public int getConstipation(){
|
return this.constipation;
|
}
|
public void setDiarrhea(int diarrhea){
|
this.diarrhea = diarrhea;
|
}
|
public int getDiarrhea(){
|
return this.diarrhea;
|
}
|
public void setIncontinence(int incontinence){
|
this.incontinence = incontinence;
|
}
|
public int getIncontinence(){
|
return this.incontinence;
|
}
|
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 UrineStatusClass {
|
//正常 1 是 0 否
|
private int normal;
|
//夜尿潴留 1 是 0 否
|
private int nightUrinaryRetention;
|
//失禁 1 是 0 否
|
private int incontinence;
|
//遗尿 1 是 0 否
|
private int enuresis;
|
private int other;
|
private String otherText;
|
|
public void setNormal(int normal){
|
this.normal = normal;
|
}
|
public int getNormal(){
|
return this.normal;
|
}
|
public void setNightUrinaryRetention(int nightUrinaryRetention){
|
this.nightUrinaryRetention = nightUrinaryRetention;
|
}
|
public int getNightUrinaryRetention(){
|
return this.nightUrinaryRetention;
|
}
|
public void setIncontinence(int incontinence){
|
this.incontinence = incontinence;
|
}
|
public int getIncontinence(){
|
return this.incontinence;
|
}
|
public void setEnuresis(int enuresis){
|
this.enuresis = enuresis;
|
}
|
public int getEnuresis(){
|
return this.enuresis;
|
}
|
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 EatingHabitsClass {
|
//荤素均匀 1 是 0 否
|
private int uniformityOfMeatAndVegetables;
|
//荤食为主 1 是 0 否
|
private int meat;
|
//素食为主 1 是 0 否
|
private int vegetable;
|
//嗜盐 1 是 0 否
|
private int salt;
|
//嗜油 1 是 0 否
|
private int oil;
|
//嗜糖 1 是 0 否
|
private int sugar;
|
//嗜酒 1 是 0 否
|
private int other;
|
|
private String otherText;
|
|
public void setUniformityOfMeatAndVegetables(int uniformityOfMeatAndVegetables){
|
this.uniformityOfMeatAndVegetables = uniformityOfMeatAndVegetables;
|
}
|
public int getUniformityOfMeatAndVegetables(){
|
return this.uniformityOfMeatAndVegetables;
|
}
|
public void setMeat(int meat){
|
this.meat = meat;
|
}
|
public int getMeat(){
|
return this.meat;
|
}
|
public void setVegetable(int vegetable){
|
this.vegetable = vegetable;
|
}
|
public int getVegetable(){
|
return this.vegetable;
|
}
|
public void setSalt(int salt){
|
this.salt = salt;
|
}
|
public int getSalt(){
|
return this.salt;
|
}
|
public void setOil(int oil){
|
this.oil = oil;
|
}
|
public int getOil(){
|
return this.oil;
|
}
|
public void setSugar(int sugar){
|
this.sugar = sugar;
|
}
|
public int getSugar(){
|
return this.sugar;
|
}
|
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 LifeEventClass {
|
//丧偶 1 是 0 否
|
private int bereave;
|
//独居 1 是 0 否
|
private int liveAlone;
|
//一年内住院 1 是 0 否
|
private int inHospital;
|
//子女分家 1 是 0 否
|
private int divide;
|
|
private int other;
|
|
private String otherText;
|
|
public void setBereave(int bereave){
|
this.bereave = bereave;
|
}
|
public int getBereave(){
|
return this.bereave;
|
}
|
public void setLiveAlone(int liveAlone){
|
this.liveAlone = liveAlone;
|
}
|
public int getLiveAlone(){
|
return this.liveAlone;
|
}
|
public void setInHospital(int inHospital){
|
this.inHospital = inHospital;
|
}
|
public int getInHospital(){
|
return this.inHospital;
|
}
|
public void setDivide(int divide){
|
this.divide = divide;
|
}
|
public int getDivide(){
|
return this.divide;
|
}
|
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;
|
}
|
|
}
|
|
|
}
|