Commit e5b3dca228d08f8d70a6c4294ee11c020fb9db38
1 parent
216212efa7
Exists in
master
and in
6 other branches
威海分娩修改
Showing 3 changed files with 9 additions and 9 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/MaternalDeliverModel.java
View file @
e5b3dca
... | ... | @@ -525,18 +525,18 @@ |
525 | 525 | |
526 | 526 | private String umbilicus;//脐 |
527 | 527 | private String umXqFy;//脐带血清反应 |
528 | - private String skinContact;//皮肤接触及早吮吸>=30分钟 | |
528 | + private Integer skinContact;//皮肤接触及早吮吸>=30分钟 | |
529 | 529 | private String zhixi;//窒息(0:青紫;1:苍白) |
530 | 530 | |
531 | 531 | public Baby(){ |
532 | 532 | |
533 | 533 | } |
534 | 534 | |
535 | - public String getSkinContact() { | |
535 | + public Integer getSkinContact() { | |
536 | 536 | return skinContact; |
537 | 537 | } |
538 | 538 | |
539 | - public void setSkinContact(String skinContact) { | |
539 | + public void setSkinContact(Integer skinContact) { | |
540 | 540 | this.skinContact = skinContact; |
541 | 541 | } |
542 | 542 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverAddRequest.java
View file @
e5b3dca
... | ... | @@ -1123,7 +1123,7 @@ |
1123 | 1123 | /*************新增结束************/ |
1124 | 1124 | private String umbilicus;//脐 |
1125 | 1125 | private String umXqFy;//脐带血清反应 |
1126 | - private String skinContact;//皮肤接触及早吮吸>=30分钟 | |
1126 | + private Integer skinContact;//皮肤接触及早吮吸>=30分钟 | |
1127 | 1127 | private String zhixi;//窒息(0:青紫;1:苍白) |
1128 | 1128 | |
1129 | 1129 | @Override |
1130 | 1130 | |
... | ... | @@ -1240,11 +1240,11 @@ |
1240 | 1240 | return baby; |
1241 | 1241 | } |
1242 | 1242 | |
1243 | - public String getSkinContact() { | |
1243 | + public Integer getSkinContact() { | |
1244 | 1244 | return skinContact; |
1245 | 1245 | } |
1246 | 1246 | |
1247 | - public void setSkinContact(String skinContact) { | |
1247 | + public void setSkinContact(Integer skinContact) { | |
1248 | 1248 | this.skinContact = skinContact; |
1249 | 1249 | } |
1250 | 1250 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MaternalDeliverResult.java
View file @
e5b3dca
... | ... | @@ -681,7 +681,7 @@ |
681 | 681 | /*************新增结束************/ |
682 | 682 | private String umbilicus;//脐 |
683 | 683 | private String umXqFy;//脐带血清反应 |
684 | - private String skinContact;//皮肤接触及早吮吸>=30分钟 | |
684 | + private Integer skinContact;//皮肤接触及早吮吸>=30分钟 | |
685 | 685 | private String zhixi;//窒息(0:青紫;1:苍白) |
686 | 686 | |
687 | 687 | public Baby(){}//增加无参构造方法 |
688 | 688 | |
... | ... | @@ -791,11 +791,11 @@ |
791 | 791 | |
792 | 792 | } |
793 | 793 | |
794 | - public String getSkinContact() { | |
794 | + public Integer getSkinContact() { | |
795 | 795 | return skinContact; |
796 | 796 | } |
797 | 797 | |
798 | - public void setSkinContact(String skinContact) { | |
798 | + public void setSkinContact(Integer skinContact) { | |
799 | 799 | this.skinContact = skinContact; |
800 | 800 | } |
801 | 801 |