using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 服务流程管理 /// internal interface IServiceWorkFlowManageService { /// /// 推送状态 /// /// 服务流程详情 /// 返回回执 Task PushStatus(ServiceWorkFlowBaseDto info); /// /// 查询单票业务单服务项目查询 /// /// 服务流程详情 /// 返回回执 Task QuerySingleBusinessPerServiceProject(ServiceWorkFlowBaseDto info); /// /// 查询单票所有相关服务项目查询 /// /// 服务流程详情 /// 返回回执 Task QuerySingleBusinessAll(ServiceWorkFlowBaseDto info); } }