Commit 67b44174500c0942c67ec611a734dbb291ed3b11
1 parent
0c4fc0304d
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 19 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyManageListResult.java
View file @
67b4417
1 | 1 | package com.lyms.platform.operate.web.result; |
2 | 2 | |
3 | 3 | import java.util.Date; |
4 | +import java.util.List; | |
5 | +import java.util.Map; | |
4 | 6 | |
5 | 7 | /** |
6 | 8 | * Created by lqy on 2016/6/17. |
... | ... | @@ -86,6 +88,21 @@ |
86 | 88 | private Integer dueWeek; |
87 | 89 | private String lastCheckDoctor; |
88 | 90 | private String riskCode; |
91 | + | |
92 | + /************************************************* | |
93 | + * 秦皇岛-高危儿因素详情-替换原诊断位置 | |
94 | + */ | |
95 | + | |
96 | + private List<Map<String,String>> qhdHighRiskInfo; | |
97 | + | |
98 | + public List<Map<String, String>> getQhdHighRiskInfo() { | |
99 | + return qhdHighRiskInfo; | |
100 | + } | |
101 | + | |
102 | + public void setQhdHighRiskInfo(List<Map<String, String>> qhdHighRiskInfo) { | |
103 | + this.qhdHighRiskInfo = qhdHighRiskInfo; | |
104 | + } | |
105 | + /***********************************************************/ | |
89 | 106 | |
90 | 107 | public String getLastNextDate() { |
91 | 108 | return lastNextDate; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/BabyListTask.java
View file @
67b4417
... | ... | @@ -215,6 +215,8 @@ |
215 | 215 | result.setOpenDisease(model.getOpenDisease() == null || "1".equals(model.getOpenDisease()) ? "未开通" : "开通"); |
216 | 216 | result.setCardNo(model.getCardNo()); |
217 | 217 | result.setVcCardNo(model.getVcCardNo()); |
218 | + //秦皇岛-高危儿详情-替换原诊断列 | |
219 | + result.setQhdHighRiskInfo(CollectionUtils.isNotEmpty(model.getQhdHighRiskInfo())?model.getQhdHighRiskInfo():null); | |
218 | 220 | list.add(result); |
219 | 221 | } |
220 | 222 | } |