RoadFlow2.1 临时演示

WorkFlowCustomEventParams.cs 498B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace RoadFlow.Data.Model
  6. {
  7. /// <summary>
  8. /// 调用流程事件时的参数实体
  9. /// </summary>
  10. [Serializable]
  11. public struct WorkFlowCustomEventParams
  12. {
  13. public Guid FlowID { get; set; }
  14. public Guid StepID { get; set; }
  15. public Guid GroupID { get; set; }
  16. public Guid TaskID { get; set; }
  17. public string InstanceID { get; set; }
  18. }
  19. }