using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WorkFlowApi.Utility.WorkFlowEngine.Scheme.Config; using WorkFlowApi.Utility.WorkFlowEngine.Scheme.Node; namespace WorkFlowApi.ViewModels.View { public class NextTaskinfo { /// /// 主键 /// /// public string Id { get; set; } /// /// 流程实例主键 /// /// public string ProcessId { get; set; } /// /// 流程节点ID /// /// public string NodeId { get; set; } /// /// 流程节点名称 /// /// public string NodeName { get; set; } /// /// 任务类型1审批2传阅3加签4子流程5重新创建 /// /// public int? Type { get; set; } /// /// 是否完成1完成2关闭0未完成 /// /// public int? IsFinished { get; set; } public List auditors { get; set; } public string nodeType { get; set; } public string btnList { get; set; } } }