stepInstance.cs 533 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using wispro.sp.entity.workflowDefine;
  7. namespace wispro.sp.entity.workflowInstance
  8. {
  9. public class StepInstance
  10. {
  11. public int Id { get; set; }
  12. public Step Step { get; set; }
  13. public int stepId { get; set; }
  14. public WorkflowInstance workflowInstance { get; set; }
  15. public int workflowInstanceId { get; set; }
  16. public int? PreviousStepId { get; set; }
  17. }
  18. }