Commit 24572d97c5890b25e85f31ddacecfce78cc4fa2b
1 parent
9cbb39f44f
Exists in
master
and in
6 other branches
公卫2.0-新增儿童花名册(儿童建档)
Showing 4 changed files with 111 additions and 1 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/BabyModel.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyBookbuildingAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyPageResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/BabyModel.java
View file @
24572d9
| ... | ... | @@ -735,6 +735,42 @@ |
| 735 | 735 | |
| 736 | 736 | private Map<String,Object> newZx; //新生儿窒息: 无、有(轻、中、重) |
| 737 | 737 | |
| 738 | + /** | |
| 739 | + * 公共卫生对接 | |
| 740 | + */ | |
| 741 | + //各厂商对接时,再确定具体的值 | |
| 742 | + private Integer isAppCreate; | |
| 743 | + | |
| 744 | + //建立儿童保健手册时间 | |
| 745 | + private String childrenBookBuildDate; | |
| 746 | + //选项指标记录 | |
| 747 | + private List<String> recordChoice; | |
| 748 | + | |
| 749 | + | |
| 750 | + public Integer getIsAppCreate() { | |
| 751 | + return isAppCreate; | |
| 752 | + } | |
| 753 | + | |
| 754 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 755 | + this.isAppCreate = isAppCreate; | |
| 756 | + } | |
| 757 | + | |
| 758 | + public String getChildrenBookBuildDate() { | |
| 759 | + return childrenBookBuildDate; | |
| 760 | + } | |
| 761 | + | |
| 762 | + public void setChildrenBookBuildDate(String childrenBookBuildDate) { | |
| 763 | + this.childrenBookBuildDate = childrenBookBuildDate; | |
| 764 | + } | |
| 765 | + | |
| 766 | + public List<String> getRecordChoice() { | |
| 767 | + return recordChoice; | |
| 768 | + } | |
| 769 | + | |
| 770 | + public void setRecordChoice(List<String> recordChoice) { | |
| 771 | + this.recordChoice = recordChoice; | |
| 772 | + } | |
| 773 | + | |
| 738 | 774 | public String getMfileCode() { |
| 739 | 775 | return mfileCode; |
| 740 | 776 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
24572d9
| ... | ... | @@ -1761,6 +1761,10 @@ |
| 1761 | 1761 | bm.setBabyAddress(b.getBabyAddress()); |
| 1762 | 1762 | //隆化-儿童预约建档号(根据最新一条儿童档案的就诊号数字段+1生成) |
| 1763 | 1763 | bm.setVcCardNoArticle(b.getVcCardNoArticle()); |
| 1764 | + //公共接口用 | |
| 1765 | + bm.setIsAppCreate(b.getIsAppCreate()); | |
| 1766 | + bm.setChildrenBookBuildDate(b.getChildrenBookBuildDate()); | |
| 1767 | + bm.setRecordChoice(b.getRecordChoice()); | |
| 1764 | 1768 | |
| 1765 | 1769 | return bm; |
| 1766 | 1770 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyBookbuildingAddRequest.java
View file @
24572d9
| ... | ... | @@ -518,7 +518,40 @@ |
| 518 | 518 | |
| 519 | 519 | private String yfCode; //预防接种证条码号 |
| 520 | 520 | private String reason; //原因 |
| 521 | + /** | |
| 522 | + * 公共卫生对接 | |
| 523 | + */ | |
| 524 | + //各厂商对接时,再确定具体的值 | |
| 525 | + private Integer isAppCreate; | |
| 521 | 526 | |
| 527 | + //建立儿童保健手册时间 | |
| 528 | + private String childrenBookBuildDate; | |
| 529 | + //选项指标记录 | |
| 530 | + private List<String> recordChoice; | |
| 531 | + | |
| 532 | + public Integer getIsAppCreate() { | |
| 533 | + return isAppCreate; | |
| 534 | + } | |
| 535 | + | |
| 536 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 537 | + this.isAppCreate = isAppCreate; | |
| 538 | + } | |
| 539 | + | |
| 540 | + public String getChildrenBookBuildDate() { | |
| 541 | + return childrenBookBuildDate; | |
| 542 | + } | |
| 543 | + | |
| 544 | + public void setChildrenBookBuildDate(String childrenBookBuildDate) { | |
| 545 | + this.childrenBookBuildDate = childrenBookBuildDate; | |
| 546 | + } | |
| 547 | + | |
| 548 | + public List<String> getRecordChoice() { | |
| 549 | + return recordChoice; | |
| 550 | + } | |
| 551 | + | |
| 552 | + public void setRecordChoice(List<String> recordChoice) { | |
| 553 | + this.recordChoice = recordChoice; | |
| 554 | + } | |
| 522 | 555 | |
| 523 | 556 | private Map<String,Object> newZx; //新生儿窒息: 无、有(轻、中、重) |
| 524 | 557 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyPageResult.java
View file @
24572d9
| ... | ... | @@ -449,6 +449,41 @@ |
| 449 | 449 | private String yfCode; //预防接种证条码号 |
| 450 | 450 | private String reason; //原因 |
| 451 | 451 | |
| 452 | + /** | |
| 453 | + * 公共卫生对接 | |
| 454 | + */ | |
| 455 | + //各厂商对接时,再确定具体的值 | |
| 456 | + private Integer isAppCreate; | |
| 457 | + | |
| 458 | + //建立儿童保健手册时间 | |
| 459 | + private String childrenBookBuildDate; | |
| 460 | + //选项指标记录 | |
| 461 | + private List<String> recordChoice; | |
| 462 | + | |
| 463 | + public Integer getIsAppCreate() { | |
| 464 | + return isAppCreate; | |
| 465 | + } | |
| 466 | + | |
| 467 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 468 | + this.isAppCreate = isAppCreate; | |
| 469 | + } | |
| 470 | + | |
| 471 | + public String getChildrenBookBuildDate() { | |
| 472 | + return childrenBookBuildDate; | |
| 473 | + } | |
| 474 | + | |
| 475 | + public void setChildrenBookBuildDate(String childrenBookBuildDate) { | |
| 476 | + this.childrenBookBuildDate = childrenBookBuildDate; | |
| 477 | + } | |
| 478 | + | |
| 479 | + public List<String> getRecordChoice() { | |
| 480 | + return recordChoice; | |
| 481 | + } | |
| 482 | + | |
| 483 | + public void setRecordChoice(List<String> recordChoice) { | |
| 484 | + this.recordChoice = recordChoice; | |
| 485 | + } | |
| 486 | + | |
| 452 | 487 | public String getMfileCode() { |
| 453 | 488 | return mfileCode; |
| 454 | 489 | } |
| ... | ... | @@ -2098,7 +2133,9 @@ |
| 2098 | 2133 | setBabySc(destModel.getBabySc()); |
| 2099 | 2134 | setYfCode(destModel.getYfCode()); |
| 2100 | 2135 | setReason(destModel.getReason()); |
| 2101 | - | |
| 2136 | + setApgarScore(destModel.getApgarScore()); | |
| 2137 | + setChildrenBookBuildDate(destModel.getChildrenBookBuildDate()); | |
| 2138 | + setRecordChoice(destModel.getRecordChoice()); | |
| 2102 | 2139 | return this; |
| 2103 | 2140 | } |
| 2104 | 2141 |