From b02beccf4567068cb47a3f1181a00039456c872d Mon Sep 17 00:00:00 2001 From: zqy <2522236926@qq.com> Date: 星期三, 06 八月 2025 15:37:20 +0800 Subject: [PATCH] 用户修改姓名和电话同步修改uaid --- zhang-content/src/main/java/com/ruoyi/domain/ZHealthInfo.java | 272 +++--------------------------------------------------- 1 files changed, 15 insertions(+), 257 deletions(-) diff --git a/zhang-content/src/main/java/com/ruoyi/domain/ZHealthInfo.java b/zhang-content/src/main/java/com/ruoyi/domain/ZHealthInfo.java index b1e0c40..18656d5 100644 --- a/zhang-content/src/main/java/com/ruoyi/domain/ZHealthInfo.java +++ b/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; - /** - * 鍋ュ悍琛ㄦ墍灞炶�卛d - */ - private Integer hid; + private Long uid; // 鍋ュ悍琛ㄦ墍灞炶�卛d - /** - * 浣撴俯 - */ - 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 + - "}"; - } } -- Gitblit v1.9.1