4 changed files with 42 additions and 10 deletions
@ -0,0 +1,30 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
|
||||
|
namespace LINGYUN.Abp.WorkflowManagement.Workflows |
||||
|
{ |
||||
|
public class ExecutionPointerDto |
||||
|
{ |
||||
|
public string Id { get; set; } |
||||
|
public int StepId { get; set; } |
||||
|
public bool Active { get; set; } |
||||
|
public DateTime? SleepUntil { get; set; } |
||||
|
public object PersistenceData { get; set; } |
||||
|
public DateTime? StartTime { get; set; } |
||||
|
public DateTime? EndTime { get; set; } |
||||
|
public string EventName { get; set; } |
||||
|
public string EventKey { get; set; } |
||||
|
public bool EventPublished { get; set; } |
||||
|
public object EventData { get; set; } |
||||
|
public string StepName { get; set; } |
||||
|
public int RetryCount { get; set; } |
||||
|
public List<string> Children { get; set; } = new List<string>(); |
||||
|
public object ContextItem { get; set; } |
||||
|
public string PredecessorId { get; set; } |
||||
|
public object Outcome { get; set; } |
||||
|
public string Status { get; set; } |
||||
|
public List<string> Scope { get; set; } = new List<string>(); |
||||
|
public Dictionary<string, object> ExtensionAttributes { get; set; } = new Dictionary<string, object>(); |
||||
|
|
||||
|
} |
||||
|
} |
||||
@ -1,16 +1,19 @@ |
|||||
using System; |
using System; |
||||
|
using System.Collections.Generic; |
||||
|
|
||||
namespace LINGYUN.Abp.WorkflowManagement.Workflows |
namespace LINGYUN.Abp.WorkflowManagement.Workflows |
||||
{ |
{ |
||||
public class WorkflowInstanceDto |
public class WorkflowInstanceDto |
||||
{ |
{ |
||||
public string WorkflowId { get; set; } |
public string Id { get; set; } |
||||
public object Data { get; set; } |
public object Data { get; set; } |
||||
public string DefinitionId { get; set; } |
public string DefinitionId { get; set; } |
||||
public int Version { get; set; } |
public int Version { get; set; } |
||||
public string Status { get; set; } |
public string Status { get; set; } |
||||
|
public string Description { get; set; } |
||||
public string Reference { get; set; } |
public string Reference { get; set; } |
||||
public DateTime StartTime { get; set; } |
public DateTime CreateTime { get; set; } |
||||
public DateTime? EndTime { get; set; } |
public DateTime? CompleteTime { get; set; } |
||||
|
public ICollection<ExecutionPointerDto> ExecutionPointers { get; set; } = new List<ExecutionPointerDto>(); |
||||
} |
} |
||||
} |
} |
||||
|
|||||
Loading…
Reference in new issue