mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-18 15:36:34 +08:00
32 lines
609 B
C#
32 lines
609 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Serein.Library
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 连接点类型
|
|||
|
|
/// </summary>
|
|||
|
|
public enum JunctionType
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前执行
|
|||
|
|
/// </summary>
|
|||
|
|
Execute,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 入参
|
|||
|
|
/// </summary>
|
|||
|
|
ArgData,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 返回值
|
|||
|
|
/// </summary>
|
|||
|
|
ReturnData,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 下一步要执行的节点
|
|||
|
|
/// </summary>
|
|||
|
|
NextStep,
|
|||
|
|
}
|
|||
|
|
}
|