From 0a9749e2074a45db607766ecc20c5161a229fc57 Mon Sep 17 00:00:00 2001 From: jiangjiazhi Date: Wed, 7 Sep 2016 20:32:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=B0=E7=94=B5=E5=AD=90?= =?UTF-8?q?=E7=97=85=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../operate/web/result/MatDeliverListResult.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java index ab149ec..4dd53cf 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java @@ -52,6 +52,16 @@ public class MatDeliverListResult { //分娩时间,补录时使用 private String dueDate; + //type 1 儿童建档 2 自动分娩 + private String type; + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } private List data = new ArrayList(); @@ -125,7 +135,13 @@ public class MatDeliverListResult { } if (null != patients.getFmDate()) { this.dueDate = DateUtil.getyyyy_MM_dd(patients.getFmDate()); + if(patients.getBuildType()==1){ + type="1"; + }else if(2==patients.getBuildType()) { + type="2"; + } } + return this; } public String getDueDate() { -- 1.8.3.1