Commit f74dc6a433077481e0af294f08adaa8c90e18779

Authored by liquanyu
1 parent 28e3b1932e
Exists in master and in 1 other branch dev

update code

Showing 1 changed file with 9 additions and 9 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java View file @ f74dc6a
... ... @@ -2574,15 +2574,15 @@
2574 2574 for (Map<String,String> map : list)
2575 2575 {
2576 2576 Map<String,Object> result = new HashMap<>();
2577   - map.put("babyName", map.get("babyName")); //姓名
2578   - map.put("sex", map.get("sex")); //性别
2579   - map.put("age", map.get("age")); //检查月龄
2580   - map.put("birthday", map.get("birthday")); //生日
2581   - map.put("height",map.get("height")); //身长
2582   - map.put("weight", map.get("weight")); //体重
2583   - map.put("growthEvaluate",map.get("growthEvaluate")); //体格发育评价
2584   - map.put("checkDate",map.get("checkDate")); //检查日期
2585   - map.put("checkDoctor",map.get("checkDoctor"));//检查医生
  2577 + result.put("babyName", map.get("babyName")); //姓名
  2578 + result.put("sex", map.get("sex")); //性别
  2579 + result.put("age", map.get("age")); //检查月龄
  2580 + result.put("birthday", map.get("birthday")); //生日
  2581 + result.put("height",map.get("height")); //身长
  2582 + result.put("weight", map.get("weight")); //体重
  2583 + result.put("growthEvaluate",map.get("growthEvaluate")); //体格发育评价
  2584 + result.put("checkDate",map.get("checkDate")); //检查日期
  2585 + result.put("checkDoctor",map.get("checkDoctor"));//检查医生
2586 2586 results.add(result);
2587 2587 }
2588 2588 }