Commit 234339c1cd10f61e3021c444f2c068301955f62d
1 parent
3b00b0c2f7
Exists in
master
and in
6 other branches
改字段
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEyeCheckServiceImpl.java
View file @
234339c
... | ... | @@ -238,7 +238,7 @@ |
238 | 238 | map.put("checkMonthId", babyEyeCheck.getCheckMonthId() + ""); |
239 | 239 | } |
240 | 240 | map.put("nextCheckTime", DateUtil.getYyyyMmDd(babyEyeCheck.getNextCheckTime())); |
241 | - /* if(babyEyeCheck.getRiskFactorId() != null) { | |
241 | + if(babyEyeCheck.getRiskFactorId() != null) { | |
242 | 242 | List<String> riskFactorId = babyEyeCheck.getRiskFactorId(); |
243 | 243 | List<Map<String, Object>> rest = new ArrayList<>(); |
244 | 244 | for (String s : riskFactorId) { |
... | ... | @@ -249,7 +249,7 @@ |
249 | 249 | rest.add(tempMap); |
250 | 250 | } |
251 | 251 | map.put("riskFactorId", rest); |
252 | - }*/ | |
252 | + } | |
253 | 253 | return RespBuilder.buildSuccess(map); |
254 | 254 | } |
255 | 255 |