Commit 3c41ff68 by wangli

修改

1 parent 202dffaa
......@@ -191,6 +191,10 @@ public class BusinessBlockServiceImpl implements BusinessBlockService {
m.put("layerName", r.getLayer());
items.add(m);
}
return Result.success(items);
//创建返回值
Map<String, List<Map<String, String>>> res = new HashMap<>();
res.put("layers", items);
return Result.success(res);
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!