Commit 5576509092e93994cc93bebc68aad354aecb1867
1 parent
efae61d429
Exists in
master
and in
6 other branches
新生儿访视明细
Showing 1 changed file with 30 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java
View file @
5576509
... | ... | @@ -76,9 +76,13 @@ |
76 | 76 | |
77 | 77 | // 皮肤 未见异常/湿疹/糜烂/其他 |
78 | 78 | private String skin; |
79 | + // 其他皮肤的值 | |
80 | + private String skinOther; | |
79 | 81 | |
80 | 82 | // 面色 红润/黄染/其他 |
81 | 83 | private String complexion; |
84 | + // 当面色为其他的时候 所填的值 | |
85 | + private String complexionOther; | |
82 | 86 | |
83 | 87 | // 黄染部位 |
84 | 88 | private String ictericPart; |
... | ... | @@ -116,6 +120,8 @@ |
116 | 120 | |
117 | 121 | // 脐带 未脱/脱落/脐部有渗出/其他 |
118 | 122 | private String umbilicalCord; |
123 | + // 其他脐带的值 | |
124 | + private String umbilicalCordOther; | |
119 | 125 | |
120 | 126 | // 腹部 |
121 | 127 | private String abdomen; |
... | ... | @@ -529,6 +535,30 @@ |
529 | 535 | |
530 | 536 | public void setUnclosedSize2(String unclosedSize2) { |
531 | 537 | this.unclosedSize2 = unclosedSize2; |
538 | + } | |
539 | + | |
540 | + public String getSkinOther() { | |
541 | + return skinOther; | |
542 | + } | |
543 | + | |
544 | + public void setSkinOther(String skinOther) { | |
545 | + this.skinOther = skinOther; | |
546 | + } | |
547 | + | |
548 | + public String getComplexionOther() { | |
549 | + return complexionOther; | |
550 | + } | |
551 | + | |
552 | + public void setComplexionOther(String complexionOther) { | |
553 | + this.complexionOther = complexionOther; | |
554 | + } | |
555 | + | |
556 | + public String getUmbilicalCordOther() { | |
557 | + return umbilicalCordOther; | |
558 | + } | |
559 | + | |
560 | + public void setUmbilicalCordOther(String umbilicalCordOther) { | |
561 | + this.umbilicalCordOther = umbilicalCordOther; | |
532 | 562 | } |
533 | 563 | } |