From 0336a9f35f3795f5661dcbfd0440875004303734 Mon Sep 17 00:00:00 2001 From: shiyang Date: Sat, 9 Oct 2021 18:28:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=95=E6=9C=9F-=E5=9C=A8=E5=88=86=E5=A8=A9?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E4=B8=AD=EF=BC=8C=E5=8A=A0=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E4=BE=9D=E6=8D=AE=E6=8E=A5=E7=94=9F=E5=8C=BB=E7=94=9F=E7=9A=84?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lyms/platform/operate/web/facade/MatDeliverFacade.java | 1 + .../operate/web/request/ChildbirthManagerRequest.java | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java index 5f1a62d..a571270 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java @@ -2607,6 +2607,7 @@ public class MatDeliverFacade { // 分娩方式去另外一张表查 patientsQuery.setDesc("fmDate"); patientsQuery.setSort("fmDate"); + patientsQuery.setBookbuildingDoctor(StringUtils.isNotEmpty(childbirthManagerRequest.getDeliverDoctor())?childbirthManagerRequest.getDeliverDoctor():null); List patientsList = patientsService.queryPatient(patientsQuery); // 这里就设置分页内容 diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChildbirthManagerRequest.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChildbirthManagerRequest.java index fd17aa7..b047bb9 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChildbirthManagerRequest.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ChildbirthManagerRequest.java @@ -190,6 +190,17 @@ public class ChildbirthManagerRequest extends BasePageQueryRequest { //管床大夫 private String gcdfDoctorId; + //隆化接生医生 + private String deliverDoctor; + + public String getDeliverDoctor() { + return deliverDoctor; + } + + public void setDeliverDoctor(String deliverDoctor) { + this.deliverDoctor = deliverDoctor; + } + public String getGcdfDoctorId() { return gcdfDoctorId; } -- 1.8.3.1