Commit a0559c1d authored by xixinzhao's avatar xixinzhao

预案列表卡片图片去掉ip

parent d8cd7d90
......@@ -647,13 +647,13 @@ public class ContingencyPlanServiceImpl implements IContingencyPlanService {
if (ValidationUtil.isEmpty(planList)) {
return;
}
planList.forEach(x -> {
String picture = x.getPicture();
if (StringUtils.isNotEmpty(picture)) {
x.setPicture(gateWayAddress + picture);
}
});
// planList.forEach(x -> {
// String picture = x.getPicture();
// if (StringUtils.isNotEmpty(picture)) {
// x.setPicture(gateWayAddress + picture);
// }
//
// });
List<Long> idList = new ArrayList<>();
planList.forEach(e -> idList.add(e.getId()));
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