Commit 0c4fc0304d7cfe62a51c63df1c226c79e7ce6ae5
1 parent
7d147c3df5
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 18 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
0c4fc03
... | ... | @@ -6328,6 +6328,9 @@ |
6328 | 6328 | model.setDevelopAssessNames(StringUtils.isNotEmpty(checkModel.getDevelopAssess())?QhdBabyPsychologyEnums.getNames(checkModel.getDevelopAssess()):""); |
6329 | 6329 | model.setScreeningOther(StringUtils.isNotEmpty(checkModel.getScreeningOther())?checkModel.getScreeningOther():""); |
6330 | 6330 | |
6331 | + //秦皇岛-高危儿详情 | |
6332 | + model.setQhdHighRiskInfo(CollectionUtils.isNotEmpty(checkModel.getQhdHighRiskInfo())?checkModel.getQhdHighRiskInfo():null); | |
6333 | + | |
6331 | 6334 | return model; |
6332 | 6335 | |
6333 | 6336 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckPageResult.java
View file @
0c4fc03
... | ... | @@ -761,6 +761,21 @@ |
761 | 761 | |
762 | 762 | /***********************************************/ |
763 | 763 | |
764 | + /************************************************* | |
765 | + * 秦皇岛-高危儿因素详情 | |
766 | + */ | |
767 | + | |
768 | + private List<Map<String,String>> qhdHighRiskInfo; | |
769 | + | |
770 | + public List<Map<String, String>> getQhdHighRiskInfo() { | |
771 | + return qhdHighRiskInfo; | |
772 | + } | |
773 | + | |
774 | + public void setQhdHighRiskInfo(List<Map<String, String>> qhdHighRiskInfo) { | |
775 | + this.qhdHighRiskInfo = qhdHighRiskInfo; | |
776 | + } | |
777 | + /***********************************************************/ | |
778 | + | |
764 | 779 | public String getTcmGuide() { |
765 | 780 | return tcmGuide; |
766 | 781 | } |