mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-18 15:36:34 +08:00
流程上下文添加了调用信息记录
This commit is contained in:
@@ -414,10 +414,11 @@ namespace Serein.Library.Api
|
||||
/// </summary>
|
||||
public class NodeTakeOutEventArgs : FlowEventArgs
|
||||
{
|
||||
public NodeTakeOutEventArgs(string canvasGuid, string nodeGuid)
|
||||
public NodeTakeOutEventArgs(string canvasGuid, string containerNodeGuid, string nodeGuid)
|
||||
{
|
||||
CanvasGuid = canvasGuid;
|
||||
NodeGuid = nodeGuid;
|
||||
ContainerNodeGuid = containerNodeGuid;
|
||||
}
|
||||
|
||||
public string CanvasGuid { get; }
|
||||
@@ -426,6 +427,11 @@ namespace Serein.Library.Api
|
||||
/// 需要取出的节点Guid
|
||||
/// </summary>
|
||||
public string NodeGuid { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// 容器节点Guid
|
||||
/// </summary>
|
||||
public string ContainerNodeGuid { get; private set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user