using DS.Module.Core;
using DS.WMS.Core.Op.Dtos;
using DS.WMS.Core.Op.Dtos.Cargoo;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Interface
{
///
///
///
public interface ICargooService
{
///
/// 发送Cargoo
///
/// 请求详情
/// 返回回执
Task> SendCargoo(CargooShipmentReqDto model);
}
}