Commit 822422d0c57502f350bc9057946d35402b9cf3ac
1 parent
7f8830ee86
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 47 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
822422d
| ... | ... | @@ -2336,6 +2336,10 @@ |
| 2336 | 2336 | result.setContactCertTypeId(p.getContactCertTypeId()); |
| 2337 | 2337 | result.setContactName(p.getContactName()); |
| 2338 | 2338 | result.setContactPhone(p.getContactPhone()); |
| 2339 | + result.setIsAppCreate(p.getIsAppCreate()); | |
| 2340 | + result.setCloseCaseReason(p.getCloseCaseReason()); | |
| 2341 | + result.setCloseCaseCode(p.getCloseCaseCode()); | |
| 2342 | + result.setBuildingManualCode(p.getBuildingManualCode()); | |
| 2339 | 2343 | return result; |
| 2340 | 2344 | } |
| 2341 | 2345 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
822422d
| ... | ... | @@ -493,6 +493,49 @@ |
| 493 | 493 | private String orgName; |
| 494 | 494 | //归属地id |
| 495 | 495 | private String addressId; |
| 496 | + /** | |
| 497 | + * 公卫2.0-新增孕产登记 | |
| 498 | + */ | |
| 499 | + //各厂商对接时,再确定具体的值 | |
| 500 | + private Integer isAppCreate; | |
| 501 | + //手工结案原因 | |
| 502 | + private String closeCaseReason; | |
| 503 | + //手工结案代码 0否 1是 | |
| 504 | + private String closeCaseCode; | |
| 505 | + //是否建册 | |
| 506 | + private String buildingManualCode; | |
| 507 | + | |
| 508 | + public Integer getIsAppCreate() { | |
| 509 | + return isAppCreate; | |
| 510 | + } | |
| 511 | + | |
| 512 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 513 | + this.isAppCreate = isAppCreate; | |
| 514 | + } | |
| 515 | + | |
| 516 | + public String getCloseCaseReason() { | |
| 517 | + return closeCaseReason; | |
| 518 | + } | |
| 519 | + | |
| 520 | + public void setCloseCaseReason(String closeCaseReason) { | |
| 521 | + this.closeCaseReason = closeCaseReason; | |
| 522 | + } | |
| 523 | + | |
| 524 | + public String getCloseCaseCode() { | |
| 525 | + return closeCaseCode; | |
| 526 | + } | |
| 527 | + | |
| 528 | + public void setCloseCaseCode(String closeCaseCode) { | |
| 529 | + this.closeCaseCode = closeCaseCode; | |
| 530 | + } | |
| 531 | + | |
| 532 | + public String getBuildingManualCode() { | |
| 533 | + return buildingManualCode; | |
| 534 | + } | |
| 535 | + | |
| 536 | + public void setBuildingManualCode(String buildingManualCode) { | |
| 537 | + this.buildingManualCode = buildingManualCode; | |
| 538 | + } | |
| 496 | 539 | |
| 497 | 540 | public String getOrgName() { |
| 498 | 541 | return orgName; |