Commit 5d5a9cccf643d374ddca08019eeeede9eaf9bc48
1 parent
a682150215
Exists in
master
and in
1 other branch
增加是否通知
Showing 2 changed files with 2 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
5d5a9cc
... | ... | @@ -60,8 +60,8 @@ |
60 | 60 | public BaseResponse getBabyBase(String babyId){ |
61 | 61 | //查询儿童的基本信息 |
62 | 62 | BabyBasicResult base = new BabyBasicResult(); |
63 | - BabyModel model = babyCheckFacade.getBabyModel(babyId, base); | |
64 | - return new BaseObjectResponse().setData(model).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
63 | + babyCheckFacade.getBabyModel(babyId, base); | |
64 | + return new BaseObjectResponse().setData(base).setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); | |
65 | 65 | } |
66 | 66 | /** |
67 | 67 | * 儿童电子病历 |