using Myshipping.Application.Entity;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 快递对接接口
///
public interface IDeliverySend
{
///
/// 快递下单
///
/// 快递订单记录
/// 快递单号
Task CreateOrder(ExpressDeliveryOrder expressDeliveryOrder);
///
/// 快递消单
///
/// 快递订单记录主键
/// 是否消单成功
Task CancelOrder(string orderId);
///
/// 下载快递面单
///
/// 快递单号
/// 快递面单保存地址
///
Task DownloadWaybillFile(string waybillNo,string savePath);
}
}