using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Model; [SuppressSniffer] public class TaskNodeModel { /// /// 任务id. /// public string? taskId { get; set; } /// /// 节点编码. /// public string? nodeId { get; set; } /// /// 上节点编码. /// public string? upNodeId { get; set; } /// /// 下节点编码. /// public string? nextNodeId { get; set; } /// /// 属性json. /// public dynamic propertyJson { get; set; } /// /// 节点类型. /// public string? type { get; set; } /// /// 状态(0:正常,-2:作废). /// public int status { get; set; } = 0; /// /// 是否分流. /// public bool isInterflow { get; set; } /// /// 是否条件分支. /// public bool isBranchFlow { get; set; } /// /// 子节点编码. /// public string? childNodeId { get; set; } }