From 329a7029b0752fcdcbb51b9f7ed9545c0d915e11 Mon Sep 17 00:00:00 2001 From: xiezhijun <15270898033@163.com> Date: Thu, 8 Apr 2021 15:26:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=89=93=E5=8D=A1=E5=AE=9E?= =?UTF-8?q?=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/stdiet/custom/page/WxLogInfo.java | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/stdiet-custom/src/main/java/com/stdiet/custom/page/WxLogInfo.java b/stdiet-custom/src/main/java/com/stdiet/custom/page/WxLogInfo.java index 664d9a055..efc7f37c1 100644 --- a/stdiet-custom/src/main/java/com/stdiet/custom/page/WxLogInfo.java +++ b/stdiet-custom/src/main/java/com/stdiet/custom/page/WxLogInfo.java @@ -27,6 +27,30 @@ public class WxLogInfo implements Serializable { private String defecation; + /** 情绪 */ + private String emotion; + + /** 食谱之外的食物 */ + private String slyEatFood; + + /** 是否便秘(Y是 N否) */ + private String constipation; + + /** 早餐照片 */ + private String breakfastImages; + + /** 午餐照片 */ + private String lunchImages; + + /** 午餐照片 */ + private String dinnerImages; + + /** 加餐照片 */ + private String extraMealImages; + + /** 体型对比照 */ + private String bodyImages; + public String getDate() { return date; } @@ -99,7 +123,69 @@ public class WxLogInfo implements Serializable { this.sleepTime = sleepTime; } + public String getEmotion() { + return emotion; + } + public void setEmotion(String emotion) { + this.emotion = emotion; + } + + public String getSlyEatFood() { + return slyEatFood; + } + + public void setSlyEatFood(String slyEatFood) { + this.slyEatFood = slyEatFood; + } + + public String getConstipation() { + return constipation; + } + + public void setConstipation(String constipation) { + this.constipation = constipation == "Y" ? "是" : "否"; + } + + public String getBreakfastImages() { + return breakfastImages; + } + + public void setBreakfastImages(String breakfastImages) { + this.breakfastImages = breakfastImages; + } + + public String getLunchImages() { + return lunchImages; + } + + public void setLunchImages(String lunchImages) { + this.lunchImages = lunchImages; + } + + public String getDinnerImages() { + return dinnerImages; + } + + public void setDinnerImages(String dinnerImages) { + this.dinnerImages = dinnerImages; + } + + public String getExtraMealImages() { + return extraMealImages; + } + + public void setExtraMealImages(String extraMealImages) { + this.extraMealImages = extraMealImages; + } + + public String getBodyImages() { + return bodyImages; + } + + public void setBodyImages(String bodyImages) { + this.bodyImages = bodyImages; + } @Override public String toString() {