1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Hotline.Share.Dtos.Article;
- using Hotline.Share.Dtos.FlowEngine;
- namespace Hotline.Share.Dtos.Order
- {
- public class OrderStartFlowDto : StartWorkflowDto<UpdateOrderDto>
- {
- }
- public class ScreenStartFlowDto : StartWorkflowDto<OrderScreenDto>
- {
- }
- public class DelayStartFlowDto : StartWorkflowDto<ApplyDelayDto>
- {
- }
- public class BulletinFlowDto:StartWorkflowDto<AddBulletinDto>
- {
- }
- public class CircularFlowDto:StartWorkflowDto<AddCircularDto>
- {
- }
- public class VisitStartFlowDto:StartWorkflowDto<AddVisitApplyDto>
- {
- }
- }
|