From 1d0c4a6fbedbf5bab690ffb18f43815e417b6d0a Mon Sep 17 00:00:00 2001 From: liquanyu Date: Thu, 10 Jan 2019 14:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A8=81=E6=B5=B7=E4=BD=93=E9=87=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/platform/operate/web/controller/PatientWeightController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java index c7ac20e..c538c7c 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/PatientWeightController.java @@ -232,7 +232,7 @@ public class PatientWeightController extends BaseController { */ @ResponseBody @RequestMapping(value = "/notify/{type}",method = RequestMethod.POST) - public BaseResponse notify(List patientIds,@PathVariable Integer type, HttpServletRequest request) { + public BaseResponse notify(@RequestBody List patientIds,@PathVariable Integer type, HttpServletRequest request) { return patientWeightService.notify(patientIds,type); } -- 1.8.3.1