From 6e1e2f694ae60dae270e54270c87faf815d25fb7 Mon Sep 17 00:00:00 2001 From: hujiaqi Date: Fri, 2 Dec 2016 14:56:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=B9=E9=87=8F=E5=A4=84=E7=90=86=E6=9C=80?= =?UTF-8?q?=E5=90=8E=E4=BA=A7=E6=A3=80=E5=8C=BB=E7=94=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/controller/TestController.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java index fc01997..6840513 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java @@ -346,8 +346,8 @@ public class TestController { @ResponseBody @RequestMapping(value = "/syncPatientsLastCheckEmployeeId", method = RequestMethod.GET) - public void syncPatientsLastCheckEmployeeId(@RequestParam String hospitalId, - @RequestParam(required = false) String size) { + public String syncPatientsLastCheckEmployeeId(@RequestParam String hospitalId, + @RequestParam(required = false) String size) { PatientsQuery patientsQuery = new PatientsQuery(); patientsQuery.setYn(YnEnums.YES.getId()); // 医院id @@ -416,6 +416,7 @@ public class TestController { } }).start(); } + return "syncPatientsLastCheckEmployeeId start......"; } @RequestMapping(value = "/initCardNo", method = RequestMethod.GET) -- 1.8.3.1