Commit 719f572548e2b3568be6ebc27d58caadf67b472d
1 parent
11d83080a1
Exists in
master
and in
6 other branches
产检增加字段
Showing 2 changed files with 42 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java
View file @
719f572
| ... | ... | @@ -21,6 +21,10 @@ |
| 21 | 21 | private String id; |
| 22 | 22 | private String parentId; |
| 23 | 23 | private String pid; |
| 24 | + //新生儿死亡备注 | |
| 25 | + private String neoDeathTodo; | |
| 26 | + //出生缺陷儿备注 | |
| 27 | + private String birthDefectTodo; | |
| 24 | 28 | //预产期 |
| 25 | 29 | private Date dueDate; |
| 26 | 30 | //末次月经 |
| ... | ... | @@ -105,6 +109,22 @@ |
| 105 | 109 | * 其他的诊断意见 |
| 106 | 110 | */ |
| 107 | 111 | private String diagnosisOther; |
| 112 | + | |
| 113 | + public String getNeoDeathTodo() { | |
| 114 | + return neoDeathTodo; | |
| 115 | + } | |
| 116 | + | |
| 117 | + public void setNeoDeathTodo(String neoDeathTodo) { | |
| 118 | + this.neoDeathTodo = neoDeathTodo; | |
| 119 | + } | |
| 120 | + | |
| 121 | + public String getBirthDefectTodo() { | |
| 122 | + return birthDefectTodo; | |
| 123 | + } | |
| 124 | + | |
| 125 | + public void setBirthDefectTodo(String birthDefectTodo) { | |
| 126 | + this.birthDefectTodo = birthDefectTodo; | |
| 127 | + } | |
| 108 | 128 | |
| 109 | 129 | public String getDiagnosisOther() { |
| 110 | 130 | return diagnosisOther; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java
View file @
719f572
| ... | ... | @@ -210,7 +210,27 @@ |
| 210 | 210 | * 其他的诊断意见 |
| 211 | 211 | */ |
| 212 | 212 | private String diagnosisOther; |
| 213 | + //新生儿死亡备注 | |
| 214 | + private String neoDeathTodo; | |
| 215 | + //出生缺陷儿备注 | |
| 216 | + private String birthDefectTodo; | |
| 213 | 217 | |
| 218 | + public String getNeoDeathTodo() { | |
| 219 | + return neoDeathTodo; | |
| 220 | + } | |
| 221 | + | |
| 222 | + public void setNeoDeathTodo(String neoDeathTodo) { | |
| 223 | + this.neoDeathTodo = neoDeathTodo; | |
| 224 | + } | |
| 225 | + | |
| 226 | + public String getBirthDefectTodo() { | |
| 227 | + return birthDefectTodo; | |
| 228 | + } | |
| 229 | + | |
| 230 | + public void setBirthDefectTodo(String birthDefectTodo) { | |
| 231 | + this.birthDefectTodo = birthDefectTodo; | |
| 232 | + } | |
| 233 | + | |
| 214 | 234 | public String getDiagnosisOther() { |
| 215 | 235 | return diagnosisOther; |
| 216 | 236 | } |
| ... | ... | @@ -915,6 +935,8 @@ |
| 915 | 935 | @Override |
| 916 | 936 | public AntExChuModel convertToDataModel() { |
| 917 | 937 | AntExChuModel antExChuModel=new AntExChuModel(); |
| 938 | + antExChuModel.setNeoDeathTodo(neoDeathTodo); | |
| 939 | + antExChuModel.setBirthDefectTodo(birthDefectTodo); | |
| 918 | 940 | antExChuModel.setDiagnosisOther(diagnosisOther); |
| 919 | 941 | antExChuModel.setBg(bg); |
| 920 | 942 | antExChuModel.setBarCode(barCode); |