Commit 2a1b120be5d5b0422a66127a75df93e40f4c562e
1 parent
0b86f0100b
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 74 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
2a1b120
... | ... | @@ -990,6 +990,14 @@ |
990 | 990 | model.setWeightEvaluate(checkModel.getWeightEvaluate()); |
991 | 991 | model.setHeadEvaluate(checkModel.getHeadEvaluate()); |
992 | 992 | model.setHeightEvaluate(checkModel.getHeightEvaluate()); |
993 | + model.setNerve(checkModel.getNerve()); | |
994 | + | |
995 | + model.setSportsEvaluation(checkModel.getSportsEvaluation()); | |
996 | + model.setHeartAction(checkModel.getHeartAction()); | |
997 | + model.setAskOther(checkModel.getAskOther()); | |
998 | + model.setBabyCheckOther(checkModel.getBabyCheckOther()); | |
999 | + model.setAssistCheckOther(checkModel.getAssistCheckOther()); | |
1000 | + model.setNavel(checkModel.getNavel()); | |
993 | 1001 | |
994 | 1002 | return model; |
995 | 1003 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
View file @
2a1b120
... | ... | @@ -228,6 +228,72 @@ |
228 | 228 | private String headEvaluate; |
229 | 229 | |
230 | 230 | |
231 | + //运动测评 | |
232 | + private String sportsEvaluation; | |
233 | + | |
234 | + //心理行为 | |
235 | + private String heartAction; | |
236 | + | |
237 | + //问诊其他 | |
238 | + private String askOther; | |
239 | + | |
240 | + //儿科检查其他 | |
241 | + private String babyCheckOther; | |
242 | + | |
243 | + //辅助检查其他 | |
244 | + private String assistCheckOther; | |
245 | + | |
246 | + //脐部 | |
247 | + private Map<String,String> navel; | |
248 | + | |
249 | + public String getSportsEvaluation() { | |
250 | + return sportsEvaluation; | |
251 | + } | |
252 | + | |
253 | + public void setSportsEvaluation(String sportsEvaluation) { | |
254 | + this.sportsEvaluation = sportsEvaluation; | |
255 | + } | |
256 | + | |
257 | + public String getHeartAction() { | |
258 | + return heartAction; | |
259 | + } | |
260 | + | |
261 | + public void setHeartAction(String heartAction) { | |
262 | + this.heartAction = heartAction; | |
263 | + } | |
264 | + | |
265 | + public String getAskOther() { | |
266 | + return askOther; | |
267 | + } | |
268 | + | |
269 | + public void setAskOther(String askOther) { | |
270 | + this.askOther = askOther; | |
271 | + } | |
272 | + | |
273 | + public String getBabyCheckOther() { | |
274 | + return babyCheckOther; | |
275 | + } | |
276 | + | |
277 | + public void setBabyCheckOther(String babyCheckOther) { | |
278 | + this.babyCheckOther = babyCheckOther; | |
279 | + } | |
280 | + | |
281 | + public String getAssistCheckOther() { | |
282 | + return assistCheckOther; | |
283 | + } | |
284 | + | |
285 | + public void setAssistCheckOther(String assistCheckOther) { | |
286 | + this.assistCheckOther = assistCheckOther; | |
287 | + } | |
288 | + | |
289 | + public Map<String, String> getNavel() { | |
290 | + return navel; | |
291 | + } | |
292 | + | |
293 | + public void setNavel(Map<String, String> navel) { | |
294 | + this.navel = navel; | |
295 | + } | |
296 | + | |
231 | 297 | public String getWeightEvaluate() { |
232 | 298 | return weightEvaluate; |
233 | 299 | } |