Files
2023-03-13 15:00:34 +08:00

58 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class TaskNodeModel
{
/// <summary>
/// 任务id.
/// </summary>
public string? taskId { get; set; }
/// <summary>
/// 节点编码.
/// </summary>
public string? nodeId { get; set; }
/// <summary>
/// 上节点编码.
/// </summary>
public string? upNodeId { get; set; }
/// <summary>
/// 下节点编码.
/// </summary>
public string? nextNodeId { get; set; }
/// <summary>
/// 属性json.
/// </summary>
public dynamic propertyJson { get; set; }
/// <summary>
/// 节点类型.
/// </summary>
public string? type { get; set; }
/// <summary>
/// 状态0正常-2作废.
/// </summary>
public int status { get; set; } = 0;
/// <summary>
/// 是否分流.
/// </summary>
public bool isInterflow { get; set; }
/// <summary>
/// 是否条件分支.
/// </summary>
public bool isBranchFlow { get; set; }
/// <summary>
/// 子节点编码.
/// </summary>
public string? childNodeId { get; set; }
}