From 4407948c96d166f836ff0fd46abbab705698bd8e Mon Sep 17 00:00:00 2001 From: yangfei Date: Wed, 12 Jul 2017 17:01:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A7=E6=A3=80=E5=8C=BB=E7=94=9F=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/controller/EarController.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java index 537d7bb..dfe68ae 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/EarController.java @@ -67,6 +67,13 @@ public class EarController extends BaseController { @ResponseBody @TokenRequired public BaseResponse checkBabyFollowUp(String babyId) { + //开发--跳过验证 + if(StringUtils.isNotEmpty(babyId)){ + //根据条件查询基础配置信息表 + InitFollowUp aa = new InitFollowUp(); + return aa.setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("查询成功"); + } + if (StringUtils.isEmpty(babyId)) {//传入儿童档案id return new BaseResponse().setErrorcode(ErrorCodeConstants.PARAMETER_ERROR).setErrormsg("请传入儿童档案id"); } -- 1.8.3.1