添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
using JNPF.DependencyInjection;
using Newtonsoft.Json.Linq;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class FlowTemplateJsonModel
{
/// <summary>
/// 节点类型.
/// </summary>
public string? type { get; set; }
/// <summary>
/// 节点内容.
/// </summary>
public string? content { get; set; }
/// <summary>
/// 节点属性.
/// </summary>
public JObject properties { get; set; }
/// <summary>
/// 当前节点标识.
/// </summary>
public string? nodeId { get; set; }
/// <summary>
/// 上级节点标识.
/// </summary>
public string? prevId { get; set; }
/// <summary>
/// 子节点.
/// </summary>
public FlowTemplateJsonModel? childNode { get; set; }
/// <summary>
/// 节点条件.
/// </summary>
public List<FlowTemplateJsonModel>? conditionNodes { get; set; }
/// <summary>
/// 条件类型.
/// </summary>
public string? conditionType { get; set; }
/// <summary>
/// 是否分流.
/// </summary>
public bool isInterflow { get; set; }
/// <summary>
/// 是否条件分支.
/// </summary>
public bool isBranchFlow { get; set; }
}