123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using wispro.sp.entity.workflowDefine;
- namespace wispro.sp.entity.workflowInstance
- {
- public class StepInstance
- {
- public int Id { get; set; }
- public Step Step { get; set; }
- public int stepId { get; set; }
- public WorkflowInstance workflowInstance { get; set; }
- public int workflowInstanceId { get; set; }
- public int? PreviousStepId { get; set; }
- }
- }
|