Commit 3a155b87ef31e9ad7afbf58d8072620357252405
1 parent
6865dbc9eb
Exists in
master
and in
1 other branch
修改: 社区服务-新生儿访视提交母亲妊娠期患病情况的数据:sickenInfo: {check: "1", other: "母亲患病情况"} check: "1…
…" other: "母亲患病情况",但数据库中没有存入该数据
Showing 1 changed file with 5 additions and 5 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyVisitAddRequest.java
View file @
3a155b8
| ... | ... | @@ -90,7 +90,7 @@ |
| 90 | 90 | private Map birthSituation; |
| 91 | 91 | |
| 92 | 92 | // 新生儿窒息 |
| 93 | - private int neonatalAsphyxia; | |
| 93 | + private String neonatalAsphyxia; | |
| 94 | 94 | |
| 95 | 95 | // 是否畸形 |
| 96 | 96 | private Map deformity; |
| 97 | 97 | |
| ... | ... | @@ -482,11 +482,11 @@ |
| 482 | 482 | this.mouthCavity = mouthCavity; |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | - public int getNeonatalAsphyxia() { | |
| 485 | + public String getNeonatalAsphyxia() { | |
| 486 | 486 | return neonatalAsphyxia; |
| 487 | 487 | } |
| 488 | 488 | |
| 489 | - public void setNeonatalAsphyxia(int neonatalAsphyxia) { | |
| 489 | + public void setNeonatalAsphyxia(String neonatalAsphyxia) { | |
| 490 | 490 | this.neonatalAsphyxia = neonatalAsphyxia; |
| 491 | 491 | } |
| 492 | 492 | |
| ... | ... | @@ -713,7 +713,7 @@ |
| 713 | 713 | babyVisitModel.setNextVisitAddr(nextVisitAddr); |
| 714 | 714 | |
| 715 | 715 | babyVisitModel.setBirthSituation(JsonUtil.obj2JsonString(birthSituation)); |
| 716 | - babyVisitModel.setNeonatalAsphyxia(JsonUtil.obj2JsonString(neonatalAsphyxia)); | |
| 716 | + babyVisitModel.setNeonatalAsphyxia(neonatalAsphyxia); | |
| 717 | 717 | babyVisitModel.setDeformity(JsonUtil.obj2JsonString(deformity)); |
| 718 | 718 | babyVisitModel.setHearing(hearing); |
| 719 | 719 | babyVisitModel.setDisease(JsonUtil.obj2JsonString(disease)); |
| ... | ... | @@ -729,7 +729,7 @@ |
| 729 | 729 | babyVisitModel.setTemperature(temperature); |
| 730 | 730 | babyVisitModel.setHeartRate(heartRate); |
| 731 | 731 | babyVisitModel.setRespiratoryRate(respiratoryRate); |
| 732 | - | |
| 732 | + babyVisitModel.setSickenInfo(JsonUtil.obj2JsonString(sickenInfo)); | |
| 733 | 733 | babyVisitModel.setComplexion(JsonUtil.obj2JsonString(complexion)); |
| 734 | 734 | babyVisitModel.setJaundiceParts(JsonUtil.obj2JsonString(jaundiceParts)); |
| 735 | 735 | babyVisitModel.setBregma(JsonUtil.obj2JsonString(bregma)); |