Commit 176d9ff4bb3c40c0b942037d2ac8697f29375904
1 parent
0914c615e8
Exists in
master
and in
6 other branches
公卫2.0-新增第一次产前随访(产前检查初诊)
Showing 4 changed files with 175 additions and 2 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.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/AntExcAddRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java
View file @
176d9ff
... | ... | @@ -523,6 +523,59 @@ |
523 | 523 | public String ctpoab; |
524 | 524 | //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 |
525 | 525 | public Integer productionSieveType; |
526 | + /** | |
527 | + * 公卫2.0-新增第一次产前随访(产前检查初诊) | |
528 | + */ | |
529 | + //各厂商对接时,再确定具体的值 | |
530 | + private Integer isAppCreate; | |
531 | + //本次随访医师id | |
532 | + private String followupDoctorId; | |
533 | + //本次随访医师姓名 | |
534 | + private String followupDoctorName; | |
535 | + //本人姓名 | |
536 | + private String name; | |
537 | + //本次随访日期 | |
538 | + private String followupDate; | |
539 | + | |
540 | + public Integer getIsAppCreate() { | |
541 | + return isAppCreate; | |
542 | + } | |
543 | + | |
544 | + public void setIsAppCreate(Integer isAppCreate) { | |
545 | + this.isAppCreate = isAppCreate; | |
546 | + } | |
547 | + | |
548 | + public String getFollowupDoctorId() { | |
549 | + return followupDoctorId; | |
550 | + } | |
551 | + | |
552 | + public void setFollowupDoctorId(String followupDoctorId) { | |
553 | + this.followupDoctorId = followupDoctorId; | |
554 | + } | |
555 | + | |
556 | + public String getFollowupDoctorName() { | |
557 | + return followupDoctorName; | |
558 | + } | |
559 | + | |
560 | + public void setFollowupDoctorName(String followupDoctorName) { | |
561 | + this.followupDoctorName = followupDoctorName; | |
562 | + } | |
563 | + | |
564 | + public String getName() { | |
565 | + return name; | |
566 | + } | |
567 | + | |
568 | + public void setName(String name) { | |
569 | + this.name = name; | |
570 | + } | |
571 | + | |
572 | + public String getFollowupDate() { | |
573 | + return followupDate; | |
574 | + } | |
575 | + | |
576 | + public void setFollowupDate(String followupDate) { | |
577 | + this.followupDate = followupDate; | |
578 | + } | |
526 | 579 | |
527 | 580 | public List<Integer> getJmxspg() { |
528 | 581 | return jmxspg; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
176d9ff
... | ... | @@ -2567,7 +2567,11 @@ |
2567 | 2567 | map.put("teamName",doctorTeam.getTeamName()); |
2568 | 2568 | } |
2569 | 2569 | } |
2570 | - | |
2570 | + map.put("isAppCreate",data.getIsAppCreate()); | |
2571 | + map.put("followupDoctorId",data.getFollowupDoctorId()); | |
2572 | + map.put("followupDoctorName",data.getFollowupDoctorName()); | |
2573 | + map.put("name",data.getName()); | |
2574 | + map.put("followupDate",data.getFollowupDate()); | |
2571 | 2575 | |
2572 | 2576 | br.setErrorcode(ErrorCodeConstants.SUCCESS); |
2573 | 2577 | br.setErrormsg("成功"); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java
View file @
176d9ff
... | ... | @@ -537,7 +537,60 @@ |
537 | 537 | public String ctpoab; |
538 | 538 | //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 |
539 | 539 | public Integer productionSieveType; |
540 | + /** | |
541 | + * 公卫2.0-新增第一次产前随访(产前检查初诊) | |
542 | + */ | |
543 | + //各厂商对接时,再确定具体的值 | |
544 | + private Integer isAppCreate; | |
545 | + //本次随访医师id | |
546 | + private String followupDoctorId; | |
547 | + //本次随访医师姓名 | |
548 | + private String followupDoctorName; | |
549 | + //本人姓名 | |
550 | + private String name; | |
551 | + //本次随访日期 | |
552 | + private String followupDate; | |
540 | 553 | |
554 | + public Integer getIsAppCreate() { | |
555 | + return isAppCreate; | |
556 | + } | |
557 | + | |
558 | + public void setIsAppCreate(Integer isAppCreate) { | |
559 | + this.isAppCreate = isAppCreate; | |
560 | + } | |
561 | + | |
562 | + public String getFollowupDoctorId() { | |
563 | + return followupDoctorId; | |
564 | + } | |
565 | + | |
566 | + public void setFollowupDoctorId(String followupDoctorId) { | |
567 | + this.followupDoctorId = followupDoctorId; | |
568 | + } | |
569 | + | |
570 | + public String getFollowupDoctorName() { | |
571 | + return followupDoctorName; | |
572 | + } | |
573 | + | |
574 | + public void setFollowupDoctorName(String followupDoctorName) { | |
575 | + this.followupDoctorName = followupDoctorName; | |
576 | + } | |
577 | + | |
578 | + public String getName() { | |
579 | + return name; | |
580 | + } | |
581 | + | |
582 | + public void setName(String name) { | |
583 | + this.name = name; | |
584 | + } | |
585 | + | |
586 | + public String getFollowupDate() { | |
587 | + return followupDate; | |
588 | + } | |
589 | + | |
590 | + public void setFollowupDate(String followupDate) { | |
591 | + this.followupDate = followupDate; | |
592 | + } | |
593 | + | |
541 | 594 | public Integer getProductionSieveType() { |
542 | 595 | return productionSieveType; |
543 | 596 | } |
... | ... | @@ -2599,6 +2652,11 @@ |
2599 | 2652 | if(null!=productionSieveType) { |
2600 | 2653 | antExChuModel.setProductionSieveType(productionSieveType); |
2601 | 2654 | } |
2655 | + antExChuModel.setIsAppCreate(isAppCreate); | |
2656 | + antExChuModel.setFollowupDoctorId(followupDoctorId); | |
2657 | + antExChuModel.setFollowupDoctorName(followupDoctorName); | |
2658 | + antExChuModel.setName(name); | |
2659 | + antExChuModel.setFollowupDate(followupDate); | |
2602 | 2660 | return antExChuModel; |
2603 | 2661 | } |
2604 | 2662 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java
View file @
176d9ff
... | ... | @@ -729,6 +729,60 @@ |
729 | 729 | //秦皇岛定制字段:是否产筛 0:未产筛 1:已产筛 |
730 | 730 | public Integer productionSieveType; |
731 | 731 | |
732 | + /** | |
733 | + * 公卫2.0-新增非首次产前随访(产前检查复诊 ) | |
734 | + */ | |
735 | + //各厂商对接时,再确定具体的值 | |
736 | + private Integer isAppCreate; | |
737 | + //本次随访医师id | |
738 | + private String followupDoctorId; | |
739 | + //本次随访医师姓名 | |
740 | + private String followupDoctorName; | |
741 | + //本次随访日期 | |
742 | + private String followupDate; | |
743 | + //本人姓名 | |
744 | + private String name; | |
745 | + | |
746 | + public Integer getIsAppCreate() { | |
747 | + return isAppCreate; | |
748 | + } | |
749 | + | |
750 | + public void setIsAppCreate(Integer isAppCreate) { | |
751 | + this.isAppCreate = isAppCreate; | |
752 | + } | |
753 | + | |
754 | + public String getFollowupDoctorId() { | |
755 | + return followupDoctorId; | |
756 | + } | |
757 | + | |
758 | + public void setFollowupDoctorId(String followupDoctorId) { | |
759 | + this.followupDoctorId = followupDoctorId; | |
760 | + } | |
761 | + | |
762 | + public String getFollowupDoctorName() { | |
763 | + return followupDoctorName; | |
764 | + } | |
765 | + | |
766 | + public void setFollowupDoctorName(String followupDoctorName) { | |
767 | + this.followupDoctorName = followupDoctorName; | |
768 | + } | |
769 | + | |
770 | + public String getFollowupDate() { | |
771 | + return followupDate; | |
772 | + } | |
773 | + | |
774 | + public void setFollowupDate(String followupDate) { | |
775 | + this.followupDate = followupDate; | |
776 | + } | |
777 | + | |
778 | + public String getName() { | |
779 | + return name; | |
780 | + } | |
781 | + | |
782 | + public void setName(String name) { | |
783 | + this.name = name; | |
784 | + } | |
785 | + | |
732 | 786 | public Integer getProductionSieveType() { |
733 | 787 | return productionSieveType; |
734 | 788 | } |
... | ... | @@ -2473,7 +2527,11 @@ |
2473 | 2527 | setJmxspg(antExChuModel.getJmxspg()); |
2474 | 2528 | setJmxsScore(antExChuModel.getJmxsScore()); |
2475 | 2529 | setJmxsLevel(antExChuModel.getJmxsLevel()); |
2476 | - | |
2530 | + setIsAppCreate(antExChuModel.getIsAppCreate()); | |
2531 | + setFollowupDoctorId(antExChuModel.getFollowupDoctorId()); | |
2532 | + setFollowupDoctorName(antExChuModel.getFollowupDoctorName()); | |
2533 | + setFollowupDate(antExChuModel.getFollowupDate()); | |
2534 | + setName(antExChuModel.getName()); | |
2477 | 2535 | } |
2478 | 2536 | return this; |
2479 | 2537 | } |