From 5576509092e93994cc93bebc68aad354aecb1867 Mon Sep 17 00:00:00 2001 From: "litao@lymsh.com" Date: Tue, 25 Jul 2017 10:54:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E7=94=9F=E5=84=BF=E8=AE=BF=E8=A7=86?= =?UTF-8?q?=E6=98=8E=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/platform/pojo/NewbornVisit.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java b/platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java index d13ba64..2ae9c1b 100644 --- a/platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java +++ b/platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java @@ -76,9 +76,13 @@ public class NewbornVisit { // 皮肤 未见异常/湿疹/糜烂/其他 private String skin; + // 其他皮肤的值 + private String skinOther; // 面色 红润/黄染/其他 private String complexion; + // 当面色为其他的时候 所填的值 + private String complexionOther; // 黄染部位 private String ictericPart; @@ -116,6 +120,8 @@ public class NewbornVisit { // 脐带 未脱/脱落/脐部有渗出/其他 private String umbilicalCord; + // 其他脐带的值 + private String umbilicalCordOther; // 腹部 private String abdomen; @@ -530,4 +536,28 @@ public class NewbornVisit { public void setUnclosedSize2(String unclosedSize2) { this.unclosedSize2 = unclosedSize2; } + + public String getSkinOther() { + return skinOther; + } + + public void setSkinOther(String skinOther) { + this.skinOther = skinOther; + } + + public String getComplexionOther() { + return complexionOther; + } + + public void setComplexionOther(String complexionOther) { + this.complexionOther = complexionOther; + } + + public String getUmbilicalCordOther() { + return umbilicalCordOther; + } + + public void setUmbilicalCordOther(String umbilicalCordOther) { + this.umbilicalCordOther = umbilicalCordOther; + } } -- 1.8.3.1