Commit 96e91f4b99e358754456068c7e20134a671ac4a0
1 parent
9e82586ca0
Exists in
master
and in
6 other branches
儿童检查曲线图-mommybaby小程序调用接口
Showing 1 changed file with 13 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BabyCheckController.java
View file @
96e91f4
... | ... | @@ -394,6 +394,19 @@ |
394 | 394 | return babyCheckFacade.getBabyCurve(babyId, loginState.getId()); |
395 | 395 | } |
396 | 396 | |
397 | + /** | |
398 | + * 儿童检查曲线图-mommybaby小程序调用接口 | |
399 | + * | |
400 | + * @param babyId | |
401 | + * @return | |
402 | + */ | |
403 | + @RequestMapping(method = RequestMethod.GET, value = "/queryBabyCurve") | |
404 | + @ResponseBody | |
405 | + public BaseResponse queryBabyCurve(@RequestParam(required = true) String babyId) { | |
406 | + return babyCheckFacade.getBabyCurve(babyId, null); | |
407 | + } | |
408 | + | |
409 | + | |
397 | 410 | |
398 | 411 | /** |
399 | 412 | * 当天检查的儿童列表 |