Commit fcffefa9050608ea5fe0782db6bfb9ff1f59367a
1 parent
c5207d8667
Exists in
master
and in
1 other branch
111
Showing 2 changed files with 22 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/MaternalDeliverModel.java
View file @
fcffefa
... | ... | @@ -158,10 +158,21 @@ |
158 | 158 | private String contactM; |
159 | 159 | //早吮吸 |
160 | 160 | private String earlySuck; |
161 | + | |
162 | + //分娩时间 | |
163 | + private String dueTime; | |
161 | 164 | public Baby(){ |
162 | 165 | |
163 | 166 | } |
164 | 167 | |
168 | + public String getDueTime() { | |
169 | + return dueTime; | |
170 | + } | |
171 | + | |
172 | + public void setDueTime(String dueTime) { | |
173 | + this.dueTime = dueTime; | |
174 | + } | |
175 | + | |
165 | 176 | public Baby(BabyModel babyModel){ |
166 | 177 | setAsphyxiaM(babyModel.getAsphyxiaM()); |
167 | 178 | if (null != babyModel.getSex()) { |
... | ... | @@ -176,6 +187,7 @@ |
176 | 187 | setContactM(babyModel.getContactM()); |
177 | 188 | setContactStartM(babyModel.getContactStartM()); |
178 | 189 | setEarlySuck(babyModel.getEarlySuck()); |
190 | +// setDueTime(babyModel.get); | |
179 | 191 | } |
180 | 192 | |
181 | 193 | public String getApgarScore() { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverAddRequest.java
View file @
fcffefa
... | ... | @@ -441,6 +441,8 @@ |
441 | 441 | private String contactM; |
442 | 442 | //早吮吸 |
443 | 443 | private String earlySuck; |
444 | + //分娩时间 | |
445 | + private String dueTime; | |
444 | 446 | |
445 | 447 | @Override |
446 | 448 | public MaternalDeliverModel.Baby convertToDataModel() { |
447 | 449 | |
... | ... | @@ -461,9 +463,17 @@ |
461 | 463 | baby.setContactM(contactM); |
462 | 464 | baby.setContactStartM(contactStartM); |
463 | 465 | baby.setEarlySuck(earlySuck); |
466 | + baby.setDueTime(dueTime); | |
464 | 467 | return baby; |
465 | 468 | } |
466 | 469 | |
470 | + public String getDueTime() { | |
471 | + return dueTime; | |
472 | + } | |
473 | + | |
474 | + public void setDueTime(String dueTime) { | |
475 | + this.dueTime = dueTime; | |
476 | + } | |
467 | 477 | |
468 | 478 | public Map getApgarScore() { |
469 | 479 | return apgarScore; |