Commit 39426761760ccd0edeabd54705c15f6c7aaa711b
1 parent
3edbc1640e
Exists in
master
and in
6 other branches
公卫2.0-新增儿童健康检查(儿保检查)
Showing 5 changed files with 234 additions and 0 deletions
- platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.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/BabyCheckRequest.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
platform-dal/src/main/java/com/lyms/platform/pojo/BabyCheckModel.java
View file @
3942676
... | ... | @@ -741,6 +741,79 @@ |
741 | 741 | private Map<String,Object> zyzd; //中医指导 |
742 | 742 | private String zrks;//转让科室 |
743 | 743 | |
744 | + /** | |
745 | + * 公卫2.0-新增儿童健康检查 | |
746 | + */ | |
747 | + //各厂商对接时,再确定具体的值 | |
748 | + private Integer isAppCreate; | |
749 | + //随访日期 | |
750 | + private String followupVisitDate; | |
751 | + //国家规范版本号(2017) | |
752 | + private String standard; | |
753 | + //本次随访医师id | |
754 | + private String followupDoctorId; | |
755 | + //随访医师姓名 | |
756 | + private String followupVisitDoctorName; | |
757 | + //儿童健康检查表单编号 | |
758 | + private String childHealthExamFormNo; | |
759 | + //儿童随访类型 1.新生儿家庭访视,2.一岁以内随访,3.1~2岁随访,4.3~6岁随访 | |
760 | + private String visitType; | |
761 | + | |
762 | + public Integer getIsAppCreate() { | |
763 | + return isAppCreate; | |
764 | + } | |
765 | + | |
766 | + public void setIsAppCreate(Integer isAppCreate) { | |
767 | + this.isAppCreate = isAppCreate; | |
768 | + } | |
769 | + | |
770 | + public String getFollowupVisitDate() { | |
771 | + return followupVisitDate; | |
772 | + } | |
773 | + | |
774 | + public void setFollowupVisitDate(String followupVisitDate) { | |
775 | + this.followupVisitDate = followupVisitDate; | |
776 | + } | |
777 | + | |
778 | + public String getStandard() { | |
779 | + return standard; | |
780 | + } | |
781 | + | |
782 | + public void setStandard(String standard) { | |
783 | + this.standard = standard; | |
784 | + } | |
785 | + | |
786 | + public String getFollowupDoctorId() { | |
787 | + return followupDoctorId; | |
788 | + } | |
789 | + | |
790 | + public void setFollowupDoctorId(String followupDoctorId) { | |
791 | + this.followupDoctorId = followupDoctorId; | |
792 | + } | |
793 | + | |
794 | + public String getFollowupVisitDoctorName() { | |
795 | + return followupVisitDoctorName; | |
796 | + } | |
797 | + | |
798 | + public void setFollowupVisitDoctorName(String followupVisitDoctorName) { | |
799 | + this.followupVisitDoctorName = followupVisitDoctorName; | |
800 | + } | |
801 | + | |
802 | + public String getChildHealthExamFormNo() { | |
803 | + return childHealthExamFormNo; | |
804 | + } | |
805 | + | |
806 | + public void setChildHealthExamFormNo(String childHealthExamFormNo) { | |
807 | + this.childHealthExamFormNo = childHealthExamFormNo; | |
808 | + } | |
809 | + | |
810 | + public String getVisitType() { | |
811 | + return visitType; | |
812 | + } | |
813 | + | |
814 | + public void setVisitType(String visitType) { | |
815 | + this.visitType = visitType; | |
816 | + } | |
744 | 817 | |
745 | 818 | public String getSf() { |
746 | 819 | return sf; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
3942676
... | ... | @@ -801,6 +801,13 @@ |
801 | 801 | model.setFypg(request.getFypg()); |
802 | 802 | model.setZyzd(request.getZyzd()); |
803 | 803 | model.setZrks(request.getZrks()); |
804 | + model.setIsAppCreate(request.getIsAppCreate()); | |
805 | + model.setFollowupVisitDate(request.getFollowupVisitDate()); | |
806 | + model.setStandard(request.getStandard()); | |
807 | + model.setFollowupDoctorId(request.getFollowupDoctorId()); | |
808 | + model.setFollowupVisitDoctorName(request.getFollowupVisitDoctorName()); | |
809 | + model.setChildHealthExamFormNo(request.getChildHealthExamFormNo()); | |
810 | + model.setVisitType(request.getVisitType()); | |
804 | 811 | |
805 | 812 | return model; |
806 | 813 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
3942676
... | ... | @@ -6504,6 +6504,13 @@ |
6504 | 6504 | model.setFypg(checkModel.getFypg()); |
6505 | 6505 | model.setZyzd(checkModel.getZyzd()); |
6506 | 6506 | model.setZrks(checkModel.getZrks()); |
6507 | + model.setIsAppCreate(checkModel.getIsAppCreate()); | |
6508 | + model.setFollowupVisitDate(checkModel.getFollowupVisitDate()); | |
6509 | + model.setStandard(checkModel.getStandard()); | |
6510 | + model.setFollowupDoctorId(checkModel.getFollowupDoctorId()); | |
6511 | + model.setFollowupVisitDoctorName(checkModel.getFollowupVisitDoctorName()); | |
6512 | + model.setChildHealthExamFormNo(checkModel.getChildHealthExamFormNo()); | |
6513 | + model.setVisitType(checkModel.getVisitType()); | |
6507 | 6514 | return model; |
6508 | 6515 | |
6509 | 6516 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyCheckRequest.java
View file @
3942676
... | ... | @@ -701,6 +701,79 @@ |
701 | 701 | private Map<String,Object> zyzd; //中医指导 |
702 | 702 | private String zrks;//转让科室 |
703 | 703 | |
704 | + /** | |
705 | + * 公卫2.0-新增儿童健康检查 | |
706 | + */ | |
707 | + //各厂商对接时,再确定具体的值 | |
708 | + private Integer isAppCreate; | |
709 | + //随访日期 | |
710 | + private String followupVisitDate; | |
711 | + //国家规范版本号(2017) | |
712 | + private String standard; | |
713 | + //本次随访医师id | |
714 | + private String followupDoctorId; | |
715 | + //随访医师姓名 | |
716 | + private String followupVisitDoctorName; | |
717 | + //儿童健康检查表单编号 | |
718 | + private String childHealthExamFormNo; | |
719 | + //儿童随访类型 1.新生儿家庭访视,2.一岁以内随访,3.1~2岁随访,4.3~6岁随访 | |
720 | + private String visitType; | |
721 | + | |
722 | + public Integer getIsAppCreate() { | |
723 | + return isAppCreate; | |
724 | + } | |
725 | + | |
726 | + public void setIsAppCreate(Integer isAppCreate) { | |
727 | + this.isAppCreate = isAppCreate; | |
728 | + } | |
729 | + | |
730 | + public String getFollowupVisitDate() { | |
731 | + return followupVisitDate; | |
732 | + } | |
733 | + | |
734 | + public void setFollowupVisitDate(String followupVisitDate) { | |
735 | + this.followupVisitDate = followupVisitDate; | |
736 | + } | |
737 | + | |
738 | + public String getStandard() { | |
739 | + return standard; | |
740 | + } | |
741 | + | |
742 | + public void setStandard(String standard) { | |
743 | + this.standard = standard; | |
744 | + } | |
745 | + | |
746 | + public String getFollowupDoctorId() { | |
747 | + return followupDoctorId; | |
748 | + } | |
749 | + | |
750 | + public void setFollowupDoctorId(String followupDoctorId) { | |
751 | + this.followupDoctorId = followupDoctorId; | |
752 | + } | |
753 | + | |
754 | + public String getFollowupVisitDoctorName() { | |
755 | + return followupVisitDoctorName; | |
756 | + } | |
757 | + | |
758 | + public void setFollowupVisitDoctorName(String followupVisitDoctorName) { | |
759 | + this.followupVisitDoctorName = followupVisitDoctorName; | |
760 | + } | |
761 | + | |
762 | + public String getChildHealthExamFormNo() { | |
763 | + return childHealthExamFormNo; | |
764 | + } | |
765 | + | |
766 | + public void setChildHealthExamFormNo(String childHealthExamFormNo) { | |
767 | + this.childHealthExamFormNo = childHealthExamFormNo; | |
768 | + } | |
769 | + | |
770 | + public String getVisitType() { | |
771 | + return visitType; | |
772 | + } | |
773 | + | |
774 | + public void setVisitType(String visitType) { | |
775 | + this.visitType = visitType; | |
776 | + } | |
704 | 777 | public String getSf() { |
705 | 778 | return sf; |
706 | 779 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
View file @
3942676
... | ... | @@ -974,6 +974,80 @@ |
974 | 974 | */ |
975 | 975 | private String lhaxisr; |
976 | 976 | |
977 | + /** | |
978 | + * 公卫2.0-新增儿童健康检查 | |
979 | + */ | |
980 | + //各厂商对接时,再确定具体的值 | |
981 | + private Integer isAppCreate; | |
982 | + //随访日期 | |
983 | + private String followupVisitDate; | |
984 | + //国家规范版本号(2017) | |
985 | + private String standard; | |
986 | + //本次随访医师id | |
987 | + private String followupDoctorId; | |
988 | + //随访医师姓名 | |
989 | + private String followupVisitDoctorName; | |
990 | + //儿童健康检查表单编号 | |
991 | + private String childHealthExamFormNo; | |
992 | + //儿童随访类型 1.新生儿家庭访视,2.一岁以内随访,3.1~2岁随访,4.3~6岁随访 | |
993 | + private String visitType; | |
994 | + | |
995 | + public Integer getIsAppCreate() { | |
996 | + return isAppCreate; | |
997 | + } | |
998 | + | |
999 | + public void setIsAppCreate(Integer isAppCreate) { | |
1000 | + this.isAppCreate = isAppCreate; | |
1001 | + } | |
1002 | + | |
1003 | + public String getFollowupVisitDate() { | |
1004 | + return followupVisitDate; | |
1005 | + } | |
1006 | + | |
1007 | + public void setFollowupVisitDate(String followupVisitDate) { | |
1008 | + this.followupVisitDate = followupVisitDate; | |
1009 | + } | |
1010 | + | |
1011 | + public String getStandard() { | |
1012 | + return standard; | |
1013 | + } | |
1014 | + | |
1015 | + public void setStandard(String standard) { | |
1016 | + this.standard = standard; | |
1017 | + } | |
1018 | + | |
1019 | + public String getFollowupDoctorId() { | |
1020 | + return followupDoctorId; | |
1021 | + } | |
1022 | + | |
1023 | + public void setFollowupDoctorId(String followupDoctorId) { | |
1024 | + this.followupDoctorId = followupDoctorId; | |
1025 | + } | |
1026 | + | |
1027 | + public String getFollowupVisitDoctorName() { | |
1028 | + return followupVisitDoctorName; | |
1029 | + } | |
1030 | + | |
1031 | + public void setFollowupVisitDoctorName(String followupVisitDoctorName) { | |
1032 | + this.followupVisitDoctorName = followupVisitDoctorName; | |
1033 | + } | |
1034 | + | |
1035 | + public String getChildHealthExamFormNo() { | |
1036 | + return childHealthExamFormNo; | |
1037 | + } | |
1038 | + | |
1039 | + public void setChildHealthExamFormNo(String childHealthExamFormNo) { | |
1040 | + this.childHealthExamFormNo = childHealthExamFormNo; | |
1041 | + } | |
1042 | + | |
1043 | + public String getVisitType() { | |
1044 | + return visitType; | |
1045 | + } | |
1046 | + | |
1047 | + public void setVisitType(String visitType) { | |
1048 | + this.visitType = visitType; | |
1049 | + } | |
1050 | + | |
977 | 1051 | public String getLhdsl() { |
978 | 1052 | return lhdsl; |
979 | 1053 | } |