package com.application.zhangshi_app_android.bean;
|
|
/**
|
* @author Ljj
|
* @date 2023.07.21. 20:07
|
* @desc 健康保健护理查体
|
*/
|
public class HealthCareNursingExaminationBean {
|
//id
|
private int id;
|
//用户id
|
private int uid;
|
//体温
|
private String temperature;
|
//脉搏
|
private String pulse;
|
//
|
private String breathe;
|
//血压
|
private String bloodPressure;
|
//体重
|
private String weight;
|
//四肢活动
|
private String movement;
|
//皮肤粘膜
|
private SkinTypeClass skinTypeClass;
|
//心理状态
|
private PsychologyTypeClass psychologyTypeClass;
|
//病理态度
|
private AttitudeClass attitudeClass;
|
//营养状况
|
private NutritionClass nutritionClass;
|
|
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 setTemperature(String temperature){
|
this.temperature = temperature;
|
}
|
public String getTemperature(){
|
return this.temperature;
|
}
|
public void setPulse(String pulse){
|
this.pulse = pulse;
|
}
|
public String getPulse(){
|
return this.pulse;
|
}
|
public void setBreathe(String breathe){
|
this.breathe = breathe;
|
}
|
public String getBreathe(){
|
return this.breathe;
|
}
|
public void setBloodPressure(String bloodPressure){
|
this.bloodPressure = bloodPressure;
|
}
|
public String getBloodPressure(){
|
return this.bloodPressure;
|
}
|
public void setWeight(String weight){
|
this.weight = weight;
|
}
|
public String getWeight(){
|
return this.weight;
|
}
|
public void setMovement(String movement){
|
this.movement = movement;
|
}
|
public String getMovement(){
|
return this.movement;
|
}
|
public void setSkinTypeClass(SkinTypeClass skinTypeClass){
|
this.skinTypeClass = skinTypeClass;
|
}
|
public SkinTypeClass getSkinTypeClass(){
|
return this.skinTypeClass;
|
}
|
public void setPsychologyTypeClass(PsychologyTypeClass psychologyTypeClass){
|
this.psychologyTypeClass = psychologyTypeClass;
|
}
|
public PsychologyTypeClass getPsychologyTypeClass(){
|
return this.psychologyTypeClass;
|
}
|
public void setAttitudeClass(AttitudeClass attitudeClass){
|
this.attitudeClass = attitudeClass;
|
}
|
public AttitudeClass getAttitudeClass(){
|
return this.attitudeClass;
|
}
|
public void setNutritionClass(NutritionClass nutritionClass){
|
this.nutritionClass = nutritionClass;
|
}
|
public NutritionClass getNutritionClass(){
|
return this.nutritionClass;
|
}
|
public static class SkinTypeClass {
|
//青春痘 0否 1是
|
private int acne;
|
//牛皮癣 0否 1是
|
private int psoriasis;
|
//色素沉着 0否 1是
|
private int color;
|
//水肿 0否 1是
|
private int edema;
|
//皮疹 0否 1是
|
private int rash;
|
//瘀斑 0否 1是
|
private int bloodStasis;
|
//皮下结节或肿块 0否 1是
|
private int snom;
|
//蜘蛛痣 0否 1是
|
private int nevus;
|
//溃疡 0否 1是
|
private int ulcer;
|
//其他 0否 1是
|
private int other;
|
|
private String otherText;
|
|
public void setAcne(int acne){
|
this.acne = acne;
|
}
|
public int getAcne(){
|
return this.acne;
|
}
|
public void setPsoriasis(int psoriasis){
|
this.psoriasis = psoriasis;
|
}
|
public int getPsoriasis(){
|
return this.psoriasis;
|
}
|
public void setColor(int color){
|
this.color = color;
|
}
|
public int getColor(){
|
return this.color;
|
}
|
public void setEdema(int edema){
|
this.edema = edema;
|
}
|
public int getEdema(){
|
return this.edema;
|
}
|
public void setRash(int rash){
|
this.rash = rash;
|
}
|
public int getRash(){
|
return this.rash;
|
}
|
public void setBloodStasis(int bloodStasis){
|
this.bloodStasis = bloodStasis;
|
}
|
public int getBloodStasis(){
|
return this.bloodStasis;
|
}
|
public void setSnom(int snom){
|
this.snom = snom;
|
}
|
public int getSnom(){
|
return this.snom;
|
}
|
public void setNevus(int nevus){
|
this.nevus = nevus;
|
}
|
public int getNevus(){
|
return this.nevus;
|
}
|
public void setUlcer(int ulcer){
|
this.ulcer = ulcer;
|
}
|
public int getUlcer(){
|
return this.ulcer;
|
}
|
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 PsychologyTypeClass {
|
//开朗 0否 1是
|
private int optimistic;
|
//焦虑 0否 1是
|
private int worry;
|
//忧愁恐惧 0否 1是
|
private int fear;
|
//猜疑 0否 1是
|
private int suspicion;
|
//压抑 0否 1是
|
private int constrain;
|
//思念 0否 1是
|
private int miss;
|
|
private int other;
|
|
private String otherText;
|
|
public void setOptimistic(int optimistic){
|
this.optimistic = optimistic;
|
}
|
public int getOptimistic(){
|
return this.optimistic;
|
}
|
public void setWorry(int worry){
|
this.worry = worry;
|
}
|
public int getWorry(){
|
return this.worry;
|
}
|
public void setFear(int fear){
|
this.fear = fear;
|
}
|
public int getFear(){
|
return this.fear;
|
}
|
public void setSuspicion(int suspicion){
|
this.suspicion = suspicion;
|
}
|
public int getSuspicion(){
|
return this.suspicion;
|
}
|
public void setConstrain(int constrain){
|
this.constrain = constrain;
|
}
|
public int getConstrain(){
|
return this.constrain;
|
}
|
public void setMiss(int miss){
|
this.miss = miss;
|
}
|
public int getMiss(){
|
return this.miss;
|
}
|
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 AttitudeClass {
|
//明朗 0否 1是
|
private int lucidity;
|
//不了解 0否 1是
|
private int unknown;
|
//正常 0否 1是
|
private int normal;
|
//不正常 0否 1是
|
private int abnormal;
|
//其他 0否 1是
|
private int other;
|
|
private String otherText;
|
|
public void setLucidity(int lucidity){
|
this.lucidity = lucidity;
|
}
|
public int getLucidity(){
|
return this.lucidity;
|
}
|
public void setUnknown(int unknown){
|
this.unknown = unknown;
|
}
|
public int getUnknown(){
|
return this.unknown;
|
}
|
public void setNormal(int normal){
|
this.normal = normal;
|
}
|
public int getNormal(){
|
return this.normal;
|
}
|
public void setAbnormal(int abnormal){
|
this.abnormal = abnormal;
|
}
|
public int getAbnormal(){
|
return this.abnormal;
|
}
|
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 NutritionClass {
|
//良好 0否 1是
|
private int good;
|
//中等 0否 1是
|
private int medium;
|
//欠佳 0否 1是
|
private int poor;
|
//肥胖 0否 1是
|
private int obesity;
|
//消瘦 0否 1是
|
private int thin;
|
//恶液质 0否 1是
|
private int fluid;
|
|
private int other;
|
|
private String otherText;
|
|
public void setGood(int good){
|
this.good = good;
|
}
|
public int getGood(){
|
return this.good;
|
}
|
public void setMedium(int medium){
|
this.medium = medium;
|
}
|
public int getMedium(){
|
return this.medium;
|
}
|
public void setPoor(int poor){
|
this.poor = poor;
|
}
|
public int getPoor(){
|
return this.poor;
|
}
|
public void setObesity(int obesity){
|
this.obesity = obesity;
|
}
|
public int getObesity(){
|
return this.obesity;
|
}
|
public void setThin(int thin){
|
this.thin = thin;
|
}
|
public int getThin(){
|
return this.thin;
|
}
|
public void setFluid(int fluid){
|
this.fluid = fluid;
|
}
|
public int getFluid(){
|
return this.fluid;
|
}
|
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;
|
}
|
|
}
|
|
}
|