OrderStartFlowDto.cs 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Hotline.Share.Dtos.Article;
  7. using Hotline.Share.Dtos.FlowEngine;
  8. using Hotline.Share.Enums.FlowEngine;
  9. namespace Hotline.Share.Dtos.Order
  10. {
  11. public class OrderStartFlowDto : StartWorkflowDto<string>
  12. {
  13. /// <summary>
  14. /// 是否转办
  15. /// </summary>
  16. public bool IsForwarded { get; set; }
  17. }
  18. public class ScreenStartFlowDto : StartWorkflowDto<OrderScreenDto>
  19. {
  20. }
  21. public class ScreenNextFlowDto
  22. {
  23. public OrderScreenDto Data { get; set; }
  24. public NextWorkflowDto NextWorkflow { get; set; }
  25. }
  26. public class DelayNextFlowDto
  27. {
  28. public OrderDelayDto Data { get; set; }
  29. public NextWorkflowDto NextWorkflow { get; set; }
  30. }
  31. public class DelayStartFlowDto : StartWorkflowDto<ApplyDelayDto>
  32. {
  33. }
  34. }