You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 服务流程管理
|
|
/// </summary>
|
|
public interface IServiceWorkFlowManageService
|
|
{
|
|
/// <summary>
|
|
/// 推送状态
|
|
/// </summary>
|
|
/// <param name="info">服务流程报文详情</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> PushStatus(TrackingMessageInfo info);
|
|
|
|
|
|
/// <summary>
|
|
/// 单票单服务项目查询
|
|
/// </summary>
|
|
/// <param name="info">查询服务流程详情</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> QuerySingleBusinessPerServiceProject(TrackingQueryMessageInfo info);
|
|
|
|
|
|
/// <summary>
|
|
/// 单票所有相关服务项目查询
|
|
/// </summary>
|
|
/// <param name="info">查询服务流程详情</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> QuerySingleBusinessAll(TrackingQueryMessageInfo info);
|
|
}
|
|
}
|