| | |
| | | import lombok.ToString; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | private NavigateNode Father;//父节点 |
| | | private List<String> directionList;//允许行走方向 |
| | | private Boolean isInflectionPoint;//是否为拐点 |
| | | private Boolean isLiftTransferPoint;//是否为顶升移栽点 |
| | | private String direction;//行走方向 |
| | | private String nodeValue;//节点数据 |
| | | private String nodeType;//节点类型 |
| | | /** |
| | | * 从 nodeValue 预解析出的站点元数据,避免热路径重复 JSON 解析。 |
| | | */ |
| | | private Integer stationId; |
| | | private List<Integer> bridgeStationIds = Collections.emptyList(); |
| | | private Boolean liftTransfer; |
| | | private Boolean rgvCalcFlag; |
| | | |
| | | public NavigateNode() { |
| | | } |
| | | |
| | | public NavigateNode(int x, int y) { |
| | | this.x = x; |