whywhyo
2023-07-19 d1abd1ef9c4b33d4c0fe9c15a43996b2f9f67048
zhang-content/src/main/java/com/ruoyi/domain/ZHealthInfo.java
@@ -3,6 +3,8 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
/**
@@ -14,278 +16,34 @@
 * @since 2023-03-14
 */
@TableName("z_health_info")
@Data
public class ZHealthInfo implements Serializable {
    private static final long serialVersionUID = 1L;
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    private Long id;
    /**
     * 健康表所属者id
     */
    private Integer hid;
    private Long uid; // 健康表所属者id
    /**
     * 体温
     */
    private String temperature;
    private String temperature; // 体温
    /**
     * 脉搏
     */
    private String pulse;
    private String pulse; // 脉搏
    /**
     * 呼吸
     */
    private String breathe;
    private String breathe; // 呼吸
    /**
     * 血压
     */
    private String bloodPressure;
    private String bloodPressure; // 血压
    /**
     * 体重kg
     */
    private String weight;
    private String weight; // 体重kg
    /**
     * 四肢活动情况
     */
    private String movement;
    private String movement; // 四肢活动情况
    /**
     * 皮肤情况
     */
    private String skinType;
    private String skinType; // 皮肤情况
    /**
     * 心理状态
     */
    private String psychologyType;
    private String psychologyType; // 心理状态
    /**
     * 面对疾病的态度
     */
    private String attitude;
    private String attitude; // 面对疾病的态度
    /**
     * 全身营养状况
     */
    private String nutrition;
    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 +
        "}";
    }
}