Commit c1ef90acbb667f9a0878c1377efbd3cee59e3b33
1 parent
822422d0c5
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 80 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
c1ef90a
| ... | ... | @@ -2870,6 +2870,13 @@ |
| 2870 | 2870 | model.setFypg(checkModel.getFypg()); |
| 2871 | 2871 | model.setZyzd(checkModel.getZyzd()); |
| 2872 | 2872 | model.setZrks(checkModel.getZrks()); |
| 2873 | + model.setIsAppCreate(checkModel.getIsAppCreate()); | |
| 2874 | + model.setFollowupVisitDate(checkModel.getFollowupVisitDate()); | |
| 2875 | + model.setStandard(checkModel.getStandard()); | |
| 2876 | + model.setFollowupDoctorId(checkModel.getFollowupDoctorId()); | |
| 2877 | + model.setFollowupVisitDoctorName(checkModel.getFollowupVisitDoctorName()); | |
| 2878 | + model.setChildHealthExamFormNo(checkModel.getChildHealthExamFormNo()); | |
| 2879 | + model.setVisitType(checkModel.getVisitType()); | |
| 2873 | 2880 | return model; |
| 2874 | 2881 | |
| 2875 | 2882 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
View file @
c1ef90a
| ... | ... | @@ -39,6 +39,79 @@ |
| 39 | 39 | private Map<String,Object> txng; //听性脑干 |
| 40 | 40 | private Map<String,Object> jsllb; //精神类量表测评 |
| 41 | 41 | private Map<String,Object> qtsc; //其他筛查 |
| 42 | + /** | |
| 43 | + * 公卫2.0-新增儿童健康检查 | |
| 44 | + */ | |
| 45 | + //各厂商对接时,再确定具体的值 | |
| 46 | + private Integer isAppCreate; | |
| 47 | + //随访日期 | |
| 48 | + private String followupVisitDate; | |
| 49 | + //国家规范版本号(2017) | |
| 50 | + private String standard; | |
| 51 | + //本次随访医师id | |
| 52 | + private String followupDoctorId; | |
| 53 | + //随访医师姓名 | |
| 54 | + private String followupVisitDoctorName; | |
| 55 | + //儿童健康检查表单编号 | |
| 56 | + private String childHealthExamFormNo; | |
| 57 | + //儿童随访类型 1.新生儿家庭访视,2.一岁以内随访,3.1~2岁随访,4.3~6岁随访 | |
| 58 | + private String visitType; | |
| 59 | + | |
| 60 | + public Integer getIsAppCreate() { | |
| 61 | + return isAppCreate; | |
| 62 | + } | |
| 63 | + | |
| 64 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 65 | + this.isAppCreate = isAppCreate; | |
| 66 | + } | |
| 67 | + | |
| 68 | + public String getFollowupVisitDate() { | |
| 69 | + return followupVisitDate; | |
| 70 | + } | |
| 71 | + | |
| 72 | + public void setFollowupVisitDate(String followupVisitDate) { | |
| 73 | + this.followupVisitDate = followupVisitDate; | |
| 74 | + } | |
| 75 | + | |
| 76 | + public String getStandard() { | |
| 77 | + return standard; | |
| 78 | + } | |
| 79 | + | |
| 80 | + public void setStandard(String standard) { | |
| 81 | + this.standard = standard; | |
| 82 | + } | |
| 83 | + | |
| 84 | + public String getFollowupDoctorId() { | |
| 85 | + return followupDoctorId; | |
| 86 | + } | |
| 87 | + | |
| 88 | + public void setFollowupDoctorId(String followupDoctorId) { | |
| 89 | + this.followupDoctorId = followupDoctorId; | |
| 90 | + } | |
| 91 | + | |
| 92 | + public String getFollowupVisitDoctorName() { | |
| 93 | + return followupVisitDoctorName; | |
| 94 | + } | |
| 95 | + | |
| 96 | + public void setFollowupVisitDoctorName(String followupVisitDoctorName) { | |
| 97 | + this.followupVisitDoctorName = followupVisitDoctorName; | |
| 98 | + } | |
| 99 | + | |
| 100 | + public String getChildHealthExamFormNo() { | |
| 101 | + return childHealthExamFormNo; | |
| 102 | + } | |
| 103 | + | |
| 104 | + public void setChildHealthExamFormNo(String childHealthExamFormNo) { | |
| 105 | + this.childHealthExamFormNo = childHealthExamFormNo; | |
| 106 | + } | |
| 107 | + | |
| 108 | + public String getVisitType() { | |
| 109 | + return visitType; | |
| 110 | + } | |
| 111 | + | |
| 112 | + public void setVisitType(String visitType) { | |
| 113 | + this.visitType = visitType; | |
| 114 | + } | |
| 42 | 115 | |
| 43 | 116 | public String getEljy() { |
| 44 | 117 | return eljy; |