From 766cb5527909ff4c23a8434e07a25ffeb06ca150 Mon Sep 17 00:00:00 2001 From: yangfei Date: Wed, 17 May 2017 09:54:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=B7=E6=B1=82=E6=96=B9=E5=BC=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/platform/operate/web/controller/FollowUpController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java index a5a02de..42523f3 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java @@ -50,7 +50,7 @@ public class FollowUpController extends BaseController { * @param babyId 随访记录id * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/getFollowUpList") + @RequestMapping(method = RequestMethod.GET, value = "/getFollowUpList") @ResponseBody public BaseResponse getFollowUpList(String babyId) { @@ -78,7 +78,7 @@ public class FollowUpController extends BaseController { * @param fuId 随访记录id * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/queryBabyPatientExtendEarFollowUpOne") + @RequestMapping(method = RequestMethod.GET, value = "/queryBabyPatientExtendEarFollowUpOne") @ResponseBody public BaseResponse queryBabyPatientExtendEarFollowUpOne(String fuId) { BabyPatientExtendEarFollowUp followUp = babyPatientExtendEarFollowUpService.getBabyPatientExtendEarFollowUp(fuId); @@ -97,7 +97,7 @@ public class FollowUpController extends BaseController { * @param request * @return */ - @RequestMapping(method = RequestMethod.POST, value = "/queryBabyPatientExtendEarFollowUpList") + @RequestMapping(method = RequestMethod.GET, value = "/queryBabyPatientExtendEarFollowUpList") @ResponseBody public BaseResponse queryBabyPatientExtendEarFollowUpList(FollowUpRequest fur, HttpServletRequest request) { //获取当前登录用户ID -- 1.8.3.1