Commit 821f762a68198444d12ee50cdf7c340140248f66

Authored by dongqin
1 parent 05bd878109

更改字段

Showing 1 changed file with 17 additions and 115 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/WxMeasureInfoModel.java View file @ 821f762
... ... @@ -38,61 +38,19 @@
38 38 private String type;
39 39  
40 40 /**
41   - * 创建更新时间
  41 + * 创建时间
42 42 */
43 43 private Date createTime;
44 44  
45 45 /**
46   - * 体温
  46 + * 更新时间
47 47 */
48   - private String temperature;
  48 + private Date updateTime;
49 49  
50   - /**
51   - * 身高
52   - */
53   - private String height;
  50 + private List<Map> babyInfos;
54 51  
55   - /**
56   - * 体重
57   - */
58   - private String weight;
  52 + private List<Map> yumInfos;
59 53  
60   - /**
61   - * 头围
62   - */
63   - private String headWidth;
64   -
65   - /**
66   - * 胸围
67   - */
68   - private String bust;
69   -
70   - /**
71   - * 喂养
72   - */
73   - private String feed;
74   -
75   -
76   - /**
77   - * 宫高
78   - */
79   - private String gongGo;
80   -
81   - /**
82   - * 腹围
83   - */
84   - private String abdomen;
85   -
86   - /**
87   - * 胎心率
88   - */
89   - private String heartRate;
90   -
91   - /**
92   - * 下次产检时间
93   - */
94   - private List<Map> checkDates;
95   -
96 54 public String getId() {
97 55 return id;
98 56 }
99 57  
100 58  
101 59  
102 60  
103 61  
... ... @@ -133,84 +91,28 @@
133 91 this.createTime = createTime;
134 92 }
135 93  
136   - public String getTemperature() {
137   - return temperature;
  94 + public List<Map> getBabyInfos() {
  95 + return babyInfos;
138 96 }
139 97  
140   - public void setTemperature(String temperature) {
141   - this.temperature = temperature;
  98 + public void setBabyInfos(List<Map> babyInfos) {
  99 + this.babyInfos = babyInfos;
142 100 }
143 101  
144   - public String getHeight() {
145   - return height;
  102 + public List<Map> getYumInfos() {
  103 + return yumInfos;
146 104 }
147 105  
148   - public void setHeight(String height) {
149   - this.height = height;
  106 + public void setYumInfos(List<Map> yumInfos) {
  107 + this.yumInfos = yumInfos;
150 108 }
151 109  
152   - public String getWeight() {
153   - return weight;
  110 + public Date getUpdateTime() {
  111 + return updateTime;
154 112 }
155 113  
156   - public void setWeight(String weight) {
157   - this.weight = weight;
158   - }
159   -
160   - public String getHeadWidth() {
161   - return headWidth;
162   - }
163   -
164   - public void setHeadWidth(String headWidth) {
165   - this.headWidth = headWidth;
166   - }
167   -
168   - public String getBust() {
169   - return bust;
170   - }
171   -
172   - public void setBust(String bust) {
173   - this.bust = bust;
174   - }
175   -
176   - public String getFeed() {
177   - return feed;
178   - }
179   -
180   - public void setFeed(String feed) {
181   - this.feed = feed;
182   - }
183   -
184   - public String getGongGo() {
185   - return gongGo;
186   - }
187   -
188   - public void setGongGo(String gongGo) {
189   - this.gongGo = gongGo;
190   - }
191   -
192   - public String getAbdomen() {
193   - return abdomen;
194   - }
195   -
196   - public void setAbdomen(String abdomen) {
197   - this.abdomen = abdomen;
198   - }
199   -
200   - public String getHeartRate() {
201   - return heartRate;
202   - }
203   -
204   - public void setHeartRate(String heartRate) {
205   - this.heartRate = heartRate;
206   - }
207   -
208   - public List<Map> getCheckDates() {
209   - return checkDates;
210   - }
211   -
212   - public void setCheckDates(List<Map> checkDates) {
213   - this.checkDates = checkDates;
  114 + public void setUpdateTime(Date updateTime) {
  115 + this.updateTime = updateTime;
214 116 }
215 117 }