From 447626a0cbe5c255457a41dc79aa0cceccb1b6c9 Mon Sep 17 00:00:00 2001 From: yangfei Date: Mon, 10 Jul 2017 10:34:55 +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 --- .../controller/AntexDoctorStatistController.java | 26 +--------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntexDoctorStatistController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntexDoctorStatistController.java index 2dfbd62..bf21d46 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntexDoctorStatistController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/AntexDoctorStatistController.java @@ -286,32 +286,8 @@ public class AntexDoctorStatistController extends BaseController { antextDoctorPatient.add(adp); } - List resultData = new ArrayList<>(); - if (number != null) { - if (number == 2) { - for (AntextDoctorPatient ad : antextDoctorPatient) { - if (ad.getCjNum() > 1) { - resultData.add(ad); - } - } - } else if (number == 5) { - for (AntextDoctorPatient ad : antextDoctorPatient) { - if (ad.getCjNum() > 4) { - resultData.add(ad); - } - } - } else { - for (AntextDoctorPatient ad : antextDoctorPatient) { - resultData.add(ad); - } - } - } else { - for (AntextDoctorPatient ad : antextDoctorPatient) { - resultData.add(ad); - } - } - return resultData; + return antextDoctorPatient; } /** -- 1.8.3.1