diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java b/platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java index d536961..ea4ccae 100644 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java +++ b/platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java @@ -38,60 +38,18 @@ public class WxMeasureInfoModel extends BaseModel implements Serializable { private String type; /** - * 创建更新时间 + * 创建时间 */ private Date createTime; /** - * 体温 + * 更新时间 */ - private String temperature; + private Date updateTime; - /** - * 身高 - */ - private String height; - - /** - * 体重 - */ - private String weight; - - /** - * 头围 - */ - private String headWidth; - - /** - * 胸围 - */ - private String bust; - - /** - * 喂养 - */ - private String feed; + private List babyInfos; - - /** - * 宫高 - */ - private String gongGo; - - /** - * 腹围 - */ - private String abdomen; - - /** - * 胎心率 - */ - private String heartRate; - - /** - * 下次产检时间 - */ - private List checkDates; + private List yumInfos; public String getId() { return id; @@ -133,83 +91,27 @@ public class WxMeasureInfoModel extends BaseModel implements Serializable { this.createTime = createTime; } - public String getTemperature() { - return temperature; - } - - public void setTemperature(String temperature) { - this.temperature = temperature; - } - - public String getHeight() { - return height; - } - - public void setHeight(String height) { - this.height = height; - } - - public String getWeight() { - return weight; - } - - public void setWeight(String weight) { - this.weight = weight; - } - - public String getHeadWidth() { - return headWidth; - } - - public void setHeadWidth(String headWidth) { - this.headWidth = headWidth; - } - - public String getBust() { - return bust; - } - - public void setBust(String bust) { - this.bust = bust; - } - - public String getFeed() { - return feed; - } - - public void setFeed(String feed) { - this.feed = feed; - } - - public String getGongGo() { - return gongGo; - } - - public void setGongGo(String gongGo) { - this.gongGo = gongGo; - } - - public String getAbdomen() { - return abdomen; + public List getBabyInfos() { + return babyInfos; } - public void setAbdomen(String abdomen) { - this.abdomen = abdomen; + public void setBabyInfos(List babyInfos) { + this.babyInfos = babyInfos; } - public String getHeartRate() { - return heartRate; + public List getYumInfos() { + return yumInfos; } - public void setHeartRate(String heartRate) { - this.heartRate = heartRate; + public void setYumInfos(List yumInfos) { + this.yumInfos = yumInfos; } - public List getCheckDates() { - return checkDates; + public Date getUpdateTime() { + return updateTime; } - public void setCheckDates(List checkDates) { - this.checkDates = checkDates; + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; } }