优化了节点加载逻辑

This commit is contained in:
fengjiayi
2025-07-08 17:37:03 +08:00
parent efe4d0a8e5
commit aa3d1763ed
8 changed files with 260 additions and 94 deletions

View File

@@ -162,6 +162,16 @@ namespace Serein.Library
/// </summary>
public string Type { get; set; }
/// <summary>
/// 父节点集合
/// </summary>
public Dictionary<ConnectionInvokeType, string[]> PreviousNodes { get; set; }
/// <summary>
/// 后续节点集合
/// </summary>
public Dictionary<ConnectionInvokeType, string[]> SuccessorNodes { get; set; }
/// <summary>
/// 真分支节点GUID
/// </summary>
@@ -189,7 +199,7 @@ namespace Serein.Library
/// <summary>
/// 父级节点Guid
/// 如果节点放置在了区域控件上,这里会有父级节点Guid
/// </summary>
public string ParentNodeGuid{ get; set; }