Commit de73724271bd2284466b7a6c55e96fb92e64ae70
1 parent
abbaac2864
Exists in
master
and in
1 other branch
增加一些字段
Showing 2 changed files with 33 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
de73724
... | ... | @@ -953,6 +953,9 @@ |
953 | 953 | ChildbirthManagerQueryModel childbirthManagerQueryModel = new ChildbirthManagerQueryModel(); |
954 | 954 | BeanUtils.copy(patients, childbirthManagerQueryModel); |
955 | 955 | BeanUtils.copy(maternalDeliverModel, childbirthManagerQueryModel); |
956 | + // 各种id | |
957 | + childbirthManagerQueryModel.setPatientId(patients.getId()); | |
958 | + childbirthManagerQueryModel.setMaternalDeliverId(maternalDeliverModel.getId()); | |
956 | 959 | // 查询分娩方式 |
957 | 960 | String deliveryModeJson = maternalDeliverModel.getDeliveryMode(); |
958 | 961 | Map<String, String> deliveryModeMap = JsonUtil.getMap(deliveryModeJson); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/ChildbirthManagerQueryModel.java
View file @
de73724
... | ... | @@ -8,6 +8,12 @@ |
8 | 8 | */ |
9 | 9 | public class ChildbirthManagerQueryModel { |
10 | 10 | |
11 | + private String maternalDeliverId; | |
12 | + | |
13 | + private String patientId; | |
14 | + | |
15 | + private String pId; | |
16 | + | |
11 | 17 | /** |
12 | 18 | * @auther HuJiaqi |
13 | 19 | * @createTime 2016年12月07日 16时36分 |
... | ... | @@ -385,6 +391,30 @@ |
385 | 391 | private String fmHospital; |
386 | 392 | // 院内信息结束 |
387 | 393 | |
394 | + | |
395 | + public String getMaternalDeliverId() { | |
396 | + return maternalDeliverId; | |
397 | + } | |
398 | + | |
399 | + public void setMaternalDeliverId(String maternalDeliverId) { | |
400 | + this.maternalDeliverId = maternalDeliverId; | |
401 | + } | |
402 | + | |
403 | + public String getPatientId() { | |
404 | + return patientId; | |
405 | + } | |
406 | + | |
407 | + public void setPatientId(String patientId) { | |
408 | + this.patientId = patientId; | |
409 | + } | |
410 | + | |
411 | + public String getpId() { | |
412 | + return pId; | |
413 | + } | |
414 | + | |
415 | + public void setpId(String pId) { | |
416 | + this.pId = pId; | |
417 | + } | |
388 | 418 | |
389 | 419 | public String getDueDate() { |
390 | 420 | return dueDate; |