Commit a0559c1d authored by xixinzhao's avatar xixinzhao

预案列表卡片图片去掉ip

parent d8cd7d90
...@@ -647,13 +647,13 @@ public class ContingencyPlanServiceImpl implements IContingencyPlanService { ...@@ -647,13 +647,13 @@ public class ContingencyPlanServiceImpl implements IContingencyPlanService {
if (ValidationUtil.isEmpty(planList)) { if (ValidationUtil.isEmpty(planList)) {
return; return;
} }
planList.forEach(x -> { // planList.forEach(x -> {
String picture = x.getPicture(); // String picture = x.getPicture();
if (StringUtils.isNotEmpty(picture)) { // if (StringUtils.isNotEmpty(picture)) {
x.setPicture(gateWayAddress + picture); // x.setPicture(gateWayAddress + picture);
} // }
//
}); // });
List<Long> idList = new ArrayList<>(); List<Long> idList = new ArrayList<>();
planList.forEach(e -> idList.add(e.getId())); planList.forEach(e -> idList.add(e.getId()));
Map<Object, List<PlanDoc>> docMapList = null; Map<Object, List<PlanDoc>> docMapList = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment