Junjie
2023-07-25 a0eeaa510b7fb771bdb2c1882a8036fb46607c01
src/main/java/com/zy/common/model/NavigateNode.java
@@ -10,12 +10,14 @@
    private int x;//坐标x
    private int y;//坐标y
    private int z;//坐标z(高度)
    private int F;//综合花费的步数
    private int G;//已经花费的步数
    private int H;//将要花费的步数
    private NavigateNode Father;//父节点
    private Boolean isInflectionPoint;//是否为拐点
    private String direction;//行走方向
    private Integer moveDistance;//行走距离
    public NavigateNode(int x, int y) {
        this.x = x;