OrderStartFlowDto.cs 726 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. namespace Hotline.Share.Dtos.Order
  9. {
  10. public class OrderStartFlowDto : StartWorkflowDto<UpdateOrderDto>
  11. {
  12. }
  13. public class ScreenStartFlowDto : StartWorkflowDto<OrderScreenDto>
  14. {
  15. }
  16. public class DelayStartFlowDto : StartWorkflowDto<ApplyDelayDto>
  17. {
  18. }
  19. public class BulletinFlowDto:StartWorkflowDto<AddBulletinDto>
  20. {
  21. }
  22. public class CircularFlowDto:StartWorkflowDto<AddCircularDto>
  23. {
  24. }
  25. public class VisitStartFlowDto:StartWorkflowDto<AddVisitApplyDto>
  26. {
  27. }
  28. }