package com.ruoyi.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 身体状况疾病表
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-14
|
*/
|
@TableName("z_health_info")
|
public class ZHealthInfo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 健康表所属者id
|
*/
|
private Integer hid;
|
|
/**
|
* 体温
|
*/
|
private String temperature;
|
|
/**
|
* 脉搏
|
*/
|
private String pulse;
|
|
/**
|
* 呼吸
|
*/
|
private String breathe;
|
|
/**
|
* 血压
|
*/
|
private String bloodPressure;
|
|
/**
|
* 体重kg
|
*/
|
private String weight;
|
|
/**
|
* 四肢活动情况
|
*/
|
private String movement;
|
|
/**
|
* 皮肤情况
|
*/
|
private String skinType;
|
|
/**
|
* 心理状态
|
*/
|
private String psychologyType;
|
|
/**
|
* 面对疾病的态度
|
*/
|
private String attitude;
|
|
/**
|
* 全身营养状况
|
*/
|
private String nutrition;
|
|
/**
|
* 脑血管疾病
|
*/
|
private String brain;
|
|
/**
|
* 心脏疾病
|
*/
|
private String heart;
|
|
/**
|
* 血管疾病
|
*/
|
private String blood;
|
|
/**
|
* 消化系统疾病
|
*/
|
private String digestiveSystem;
|
|
/**
|
* 呼吸系统疾病
|
*/
|
private String breathSystem;
|
|
/**
|
* 肾脏疾病
|
*/
|
private String kidney;
|
|
/**
|
* 其他疾病
|
*/
|
private String other;
|
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getHid() {
|
return hid;
|
}
|
|
public void setHid(Integer hid) {
|
this.hid = hid;
|
}
|
|
public String getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(String temperature) {
|
this.temperature = temperature;
|
}
|
|
public String getPulse() {
|
return pulse;
|
}
|
|
public void setPulse(String pulse) {
|
this.pulse = pulse;
|
}
|
|
public String getBreathe() {
|
return breathe;
|
}
|
|
public void setBreathe(String breathe) {
|
this.breathe = breathe;
|
}
|
|
public String getBloodPressure() {
|
return bloodPressure;
|
}
|
|
public void setBloodPressure(String bloodPressure) {
|
this.bloodPressure = bloodPressure;
|
}
|
|
public String getWeight() {
|
return weight;
|
}
|
|
public void setWeight(String weight) {
|
this.weight = weight;
|
}
|
|
public String getMovement() {
|
return movement;
|
}
|
|
public void setMovement(String movement) {
|
this.movement = movement;
|
}
|
|
public String getSkinType() {
|
return skinType;
|
}
|
|
public void setSkinType(String skinType) {
|
this.skinType = skinType;
|
}
|
|
public String getPsychologyType() {
|
return psychologyType;
|
}
|
|
public void setPsychologyType(String psychologyType) {
|
this.psychologyType = psychologyType;
|
}
|
|
public String getAttitude() {
|
return attitude;
|
}
|
|
public void setAttitude(String attitude) {
|
this.attitude = attitude;
|
}
|
|
public String getNutrition() {
|
return nutrition;
|
}
|
|
public void setNutrition(String nutrition) {
|
this.nutrition = nutrition;
|
}
|
|
public String getBrain() {
|
return brain;
|
}
|
|
public void setBrain(String brain) {
|
this.brain = brain;
|
}
|
|
public String getHeart() {
|
return heart;
|
}
|
|
public void setHeart(String heart) {
|
this.heart = heart;
|
}
|
|
public String getBlood() {
|
return blood;
|
}
|
|
public void setBlood(String blood) {
|
this.blood = blood;
|
}
|
|
public String getDigestiveSystem() {
|
return digestiveSystem;
|
}
|
|
public void setDigestiveSystem(String digestiveSystem) {
|
this.digestiveSystem = digestiveSystem;
|
}
|
|
public String getBreathSystem() {
|
return breathSystem;
|
}
|
|
public void setBreathSystem(String breathSystem) {
|
this.breathSystem = breathSystem;
|
}
|
|
public String getKidney() {
|
return kidney;
|
}
|
|
public void setKidney(String kidney) {
|
this.kidney = kidney;
|
}
|
|
public String getOther() {
|
return other;
|
}
|
|
public void setOther(String other) {
|
this.other = other;
|
}
|
|
@Override
|
public String toString() {
|
return "ZHealthInfo{" +
|
"id=" + id +
|
", hid=" + hid +
|
", temperature=" + temperature +
|
", pulse=" + pulse +
|
", breathe=" + breathe +
|
", bloodPressure=" + bloodPressure +
|
", weight=" + weight +
|
", movement=" + movement +
|
", skinType=" + skinType +
|
", psychologyType=" + psychologyType +
|
", attitude=" + attitude +
|
", nutrition=" + nutrition +
|
", brain=" + brain +
|
", heart=" + heart +
|
", blood=" + blood +
|
", digestiveSystem=" + digestiveSystem +
|
", breathSystem=" + breathSystem +
|
", kidney=" + kidney +
|
", other=" + other +
|
"}";
|
}
|
}
|