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; } /**