From 5e4805cd3ed7b5194ad0ce8a778fd1a6283a1daf Mon Sep 17 00:00:00 2001 From: yangfei Date: Mon, 5 Feb 2018 11:40:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=BC=80=E9=80=9A=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java index cdd97d2..d03a883 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java @@ -48,10 +48,8 @@ public class PatientServiceSysFacade implements SysBaseFacade { JSONArray jsonArray = JSONArray.fromObject(synForm); BaseResponse baseResponse = new BaseResponse(); for (int i = 0; i < jsonArray.size(); i++) { - // JSONObject jsonObject = JSONObject.fromObject(synForm); - // PatientService patientService = (PatientService)JSONObject.toBean(jsonObject, PatientService.class); PatientService patientService = (PatientService) JSONObject.toBean(jsonArray.getJSONObject(i), PatientService.class); - System.out.println("请求参数转换结果:"+patientService); + // System.out.println("请求参数转换结果:"+patientService); baseResponse = validate(patientService); if (baseResponse.getErrorcode() != ErrorCodeConstants.SUCCESS) { return baseResponse; -- 1.8.3.1