#
Junjie
2 天以前 c72c95f66a00d04dd54e2b49a4f3e3766f01871f
src/main/java/com/zy/common/utils/NavigateMapData.java
@@ -223,8 +223,8 @@
                }
                List<MapNode> list = lists.get(row);
                MapNode mapNode = list.get(bay);
                List<MapNode> list = lists.get(row - 1);
                MapNode mapNode = list.get(bay - 1);
                if (mapType == NavigationMapType.NONE.id) {
                    //不过滤任何数据
@@ -250,8 +250,8 @@
                mapNode.setLocNo(locMast.getLocNo());
                //更新list
                list.set(bay, mapNode);
                lists.set(row, list);
                list.set(bay - 1, mapNode);
                lists.set(row - 1, list);
            }
        }catch (Exception e) {
            e.printStackTrace();