Commit 7ab1c55e8deccb28584f5ac6ebfeabe3d3b05bb4
1 parent
833535fb13
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 118 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/QhdWeightConfigModel.java
View file @
7ab1c55
| 1 | +package com.lyms.platform.pojo; | |
| 2 | + | |
| 3 | +import org.springframework.data.mongodb.core.mapping.Document; | |
| 4 | + | |
| 5 | +import java.util.List; | |
| 6 | + | |
| 7 | +@Document(collection = "lyms_weight_qhd_config") | |
| 8 | +public class QhdWeightConfigModel { | |
| 9 | + private List<String> breakfast;//早餐 | |
| 10 | + private List<String> breakfastAdd;//上午加餐 | |
| 11 | + private List<String> lunch;//午餐 | |
| 12 | + private List<String> lunchAdd;//下午加餐 | |
| 13 | + private List<String> dinner;//晚餐 | |
| 14 | + private List<String> dinnerAdd;//晚加餐 | |
| 15 | + | |
| 16 | + | |
| 17 | + private List<String> earlySuggests;//早期建议 | |
| 18 | + private List<String> middleSuggests;//中期建议 | |
| 19 | + private List<String> laterSuggests;//晚期建议 | |
| 20 | + | |
| 21 | + /*** | |
| 22 | + * 0 早期 | |
| 23 | + * 1 中期 | |
| 24 | + * 2 晚期 | |
| 25 | + * */ | |
| 26 | + private Integer pregnancy; //孕期 | |
| 27 | + | |
| 28 | + private Integer kcal; //整值卡路里 | |
| 29 | + | |
| 30 | + | |
| 31 | + public List<String> getBreakfast() { | |
| 32 | + return breakfast; | |
| 33 | + } | |
| 34 | + | |
| 35 | + public void setBreakfast(List<String> breakfast) { | |
| 36 | + this.breakfast = breakfast; | |
| 37 | + } | |
| 38 | + | |
| 39 | + public List<String> getBreakfastAdd() { | |
| 40 | + return breakfastAdd; | |
| 41 | + } | |
| 42 | + | |
| 43 | + public void setBreakfastAdd(List<String> breakfastAdd) { | |
| 44 | + this.breakfastAdd = breakfastAdd; | |
| 45 | + } | |
| 46 | + | |
| 47 | + public List<String> getLunch() { | |
| 48 | + return lunch; | |
| 49 | + } | |
| 50 | + | |
| 51 | + public void setLunch(List<String> lunch) { | |
| 52 | + this.lunch = lunch; | |
| 53 | + } | |
| 54 | + | |
| 55 | + public List<String> getLunchAdd() { | |
| 56 | + return lunchAdd; | |
| 57 | + } | |
| 58 | + | |
| 59 | + public void setLunchAdd(List<String> lunchAdd) { | |
| 60 | + this.lunchAdd = lunchAdd; | |
| 61 | + } | |
| 62 | + | |
| 63 | + public List<String> getDinner() { | |
| 64 | + return dinner; | |
| 65 | + } | |
| 66 | + | |
| 67 | + public void setDinner(List<String> dinner) { | |
| 68 | + this.dinner = dinner; | |
| 69 | + } | |
| 70 | + | |
| 71 | + public List<String> getDinnerAdd() { | |
| 72 | + return dinnerAdd; | |
| 73 | + } | |
| 74 | + | |
| 75 | + public void setDinnerAdd(List<String> dinnerAdd) { | |
| 76 | + this.dinnerAdd = dinnerAdd; | |
| 77 | + } | |
| 78 | + | |
| 79 | + public List<String> getEarlySuggests() { | |
| 80 | + return earlySuggests; | |
| 81 | + } | |
| 82 | + | |
| 83 | + public void setEarlySuggests(List<String> earlySuggests) { | |
| 84 | + this.earlySuggests = earlySuggests; | |
| 85 | + } | |
| 86 | + | |
| 87 | + public List<String> getMiddleSuggests() { | |
| 88 | + return middleSuggests; | |
| 89 | + } | |
| 90 | + | |
| 91 | + public void setMiddleSuggests(List<String> middleSuggests) { | |
| 92 | + this.middleSuggests = middleSuggests; | |
| 93 | + } | |
| 94 | + | |
| 95 | + public List<String> getLaterSuggests() { | |
| 96 | + return laterSuggests; | |
| 97 | + } | |
| 98 | + | |
| 99 | + public void setLaterSuggests(List<String> laterSuggests) { | |
| 100 | + this.laterSuggests = laterSuggests; | |
| 101 | + } | |
| 102 | + | |
| 103 | + public Integer getPregnancy() { | |
| 104 | + return pregnancy; | |
| 105 | + } | |
| 106 | + | |
| 107 | + public void setPregnancy(Integer pregnancy) { | |
| 108 | + this.pregnancy = pregnancy; | |
| 109 | + } | |
| 110 | + | |
| 111 | + public Integer getKcal() { | |
| 112 | + return kcal; | |
| 113 | + } | |
| 114 | + | |
| 115 | + public void setKcal(Integer kcal) { | |
| 116 | + this.kcal = kcal; | |
| 117 | + } | |
| 118 | +} |