Commit 63eceabebf859a1dffc45f203a85df23da9f345e
1 parent
3942676176
Exists in
master
and in
6 other branches
公卫2.0-新增孕产登记(新增孕产妇档案)
Showing 4 changed files with 98 additions and 0 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java
platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java
View file @
63eceab
... | ... | @@ -472,6 +472,50 @@ |
472 | 472 | //归属地id |
473 | 473 | private String addressId; |
474 | 474 | |
475 | + /** | |
476 | + * 公卫2.0-新增孕产登记 | |
477 | + */ | |
478 | + //各厂商对接时,再确定具体的值 | |
479 | + private Integer isAppCreate; | |
480 | + //手工结案原因 | |
481 | + private String closeCaseReason; | |
482 | + //手工结案代码 0否 1是 | |
483 | + private String closeCaseCode; | |
484 | + //是否建册 | |
485 | + private String buildingManualCode; | |
486 | + | |
487 | + public Integer getIsAppCreate() { | |
488 | + return isAppCreate; | |
489 | + } | |
490 | + | |
491 | + public void setIsAppCreate(Integer isAppCreate) { | |
492 | + this.isAppCreate = isAppCreate; | |
493 | + } | |
494 | + | |
495 | + public String getCloseCaseReason() { | |
496 | + return closeCaseReason; | |
497 | + } | |
498 | + | |
499 | + public void setCloseCaseReason(String closeCaseReason) { | |
500 | + this.closeCaseReason = closeCaseReason; | |
501 | + } | |
502 | + | |
503 | + public String getCloseCaseCode() { | |
504 | + return closeCaseCode; | |
505 | + } | |
506 | + | |
507 | + public void setCloseCaseCode(String closeCaseCode) { | |
508 | + this.closeCaseCode = closeCaseCode; | |
509 | + } | |
510 | + | |
511 | + public String getBuildingManualCode() { | |
512 | + return buildingManualCode; | |
513 | + } | |
514 | + | |
515 | + public void setBuildingManualCode(String buildingManualCode) { | |
516 | + this.buildingManualCode = buildingManualCode; | |
517 | + } | |
518 | + | |
475 | 519 | public String getOrgName() { |
476 | 520 | return orgName; |
477 | 521 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
63eceab
... | ... | @@ -2088,6 +2088,11 @@ |
2088 | 2088 | patient.setContactCertTypeId(yunRequest.getContactCertTypeId()); |
2089 | 2089 | patient.setContactName(yunRequest.getContactName()); |
2090 | 2090 | patient.setContactPhone(yunRequest.getContactPhone()); |
2091 | + patient.setIsAppCreate(yunRequest.getIsAppCreate()); | |
2092 | + patient.setCloseCaseReason(yunRequest.getCloseCaseReason()); | |
2093 | + patient.setCloseCaseCode(yunRequest.getCloseCaseCode()); | |
2094 | + patient.setBuildingManualCode(yunRequest.getBuildingManualCode()); | |
2095 | + | |
2091 | 2096 | return patient; |
2092 | 2097 | } |
2093 | 2098 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
63eceab
... | ... | @@ -584,6 +584,10 @@ |
584 | 584 | map.put("contactCertType", getBasicConfig(data.getContactCertTypeId())); |
585 | 585 | map.put("contactCertNo", data.getContactCertNo()); |
586 | 586 | map.put("contactPhone", data.getContactPhone()); |
587 | + map.put("isAppCreate", data.getIsAppCreate()); | |
588 | + map.put("closeCaseReason", data.getCloseCaseReason()); | |
589 | + map.put("closeCaseCode", data.getCloseCaseCode()); | |
590 | + map.put("buildingManualCode", data.getBuildingManualCode()); | |
587 | 591 | |
588 | 592 | return map; |
589 | 593 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java
View file @
63eceab
... | ... | @@ -573,6 +573,51 @@ |
573 | 573 | //联系人证件号码 |
574 | 574 | private String contactCertNo; |
575 | 575 | |
576 | + | |
577 | + /** | |
578 | + * 公卫2.0-新增孕产登记 | |
579 | + */ | |
580 | + //各厂商对接时,再确定具体的值 | |
581 | + private Integer isAppCreate; | |
582 | + //手工结案原因 | |
583 | + private String closeCaseReason; | |
584 | + //手工结案代码 0否 1是 | |
585 | + private String closeCaseCode; | |
586 | + //是否建册 | |
587 | + private String buildingManualCode; | |
588 | + | |
589 | + public Integer getIsAppCreate() { | |
590 | + return isAppCreate; | |
591 | + } | |
592 | + | |
593 | + public void setIsAppCreate(Integer isAppCreate) { | |
594 | + this.isAppCreate = isAppCreate; | |
595 | + } | |
596 | + | |
597 | + public String getCloseCaseReason() { | |
598 | + return closeCaseReason; | |
599 | + } | |
600 | + | |
601 | + public void setCloseCaseReason(String closeCaseReason) { | |
602 | + this.closeCaseReason = closeCaseReason; | |
603 | + } | |
604 | + | |
605 | + public String getCloseCaseCode() { | |
606 | + return closeCaseCode; | |
607 | + } | |
608 | + | |
609 | + public void setCloseCaseCode(String closeCaseCode) { | |
610 | + this.closeCaseCode = closeCaseCode; | |
611 | + } | |
612 | + | |
613 | + public String getBuildingManualCode() { | |
614 | + return buildingManualCode; | |
615 | + } | |
616 | + | |
617 | + public void setBuildingManualCode(String buildingManualCode) { | |
618 | + this.buildingManualCode = buildingManualCode; | |
619 | + } | |
620 | + | |
576 | 621 | public String getContactName() { |
577 | 622 | return contactName; |
578 | 623 | } |