using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Model; [SuppressSniffer] public class FlowTaskNodeModel { /// /// id. /// public string? id { get; set; } /// /// 节点编码. /// public string? nodeCode { get; set; } /// /// 节点名称. /// public string? nodeName { get; set; } /// /// 节点类型. /// public string? nodeType { get; set; } /// /// 节点属性. /// public string? nodePropertyJson { get; set; } /// /// 驳回节点. /// public string? nodeUp { get; set; } /// /// 下一节点. /// public string? nodeNext { get; set; } /// /// 完成情况. /// public int? completion { get; set; } /// /// 备注. /// public string? description { get; set; } /// /// 排序码. /// public long? sortCode { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 任务id. /// public string? taskId { get; set; } /// /// 经办人集合. /// public string? userName { get; set; } /// /// 节点标识. /// public string? assigneeName { get; set; } /// /// 流程图节点颜色类型(0:绿色,1:蓝色,其他:灰色). /// public string? type { get; set; } /// /// 临时候选人. /// public string? candidates { get; set; } }