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() {