using DS.Module.Core; using DS.WMS.Core.Op.Dtos; using DS.WMS.Core.TaskPlat.Dtos; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.TaskPlat.Interface { /// /// 起运港未提箱通知服务 /// public interface ITaskPOLContainerNotPickUpService { /// /// 通过任务主键获取起运港未提箱详情 /// /// 起运港未提箱任务主键 /// 返回回执 Task>> GetInfoByTaskId(long taskPKId); /// /// 检索对应的订舱订单并保存订舱ID /// /// 起运港未提箱任务主键 /// 返回回执 Task> SearchAndMarkBookingOrder(long taskPKId); /// /// 发送邮件通知给客户 /// /// 起运港未提箱主键 /// 返回回执 Task SendEmailToCustomer(long taskPKId); } }