From 2f8cbdcbd9193f4a8ffc6d8fca1f4eb74413f4b6 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Mon, 3 Sep 2018 16:06:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A9=E4=BA=A7=E6=9C=BA=E6=9E=84=E6=8A=A5?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java index 1765722..2fcb50d 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/DueOrgCountWorker.java @@ -75,6 +75,7 @@ public class DueOrgCountWorker implements Callable>> { //产妇数 MatDeliverQuery matDeliverQuery = new MatDeliverQuery(); matDeliverQuery.setYn(YnEnums.YES.getId()); + if (StringUtils.isNotEmpty(time)) { matDeliverQuery.setCreatedStart(DateUtil.getSNDate(time)[0]); @@ -89,6 +90,7 @@ public class DueOrgCountWorker implements Callable>> { //高危孕产妇数 PatientsQuery patientsQuery = new PatientsQuery(); patientsQuery.setIsHighRisk(true); + patientsQuery.setType(3); patientsQuery.setYn(YnEnums.YES.getId()); if (StringUtils.isNotEmpty(time)) { -- 1.8.3.1