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.
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 起运港未提箱通知服务
|
|
/// </summary>
|
|
public interface ITaskPOLContainerNotPickUpService
|
|
{
|
|
/// <summary>
|
|
/// 通过任务主键获取起运港未提箱详情
|
|
/// </summary>
|
|
/// <param name="taskPKId">起运港未提箱任务主键</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<DataResult<List<TaskPOLContainerNotPickUpShowDto>>> GetInfoByTaskId(long taskPKId);
|
|
|
|
/// <summary>
|
|
/// 检索对应的订舱订单并保存订舱ID
|
|
/// </summary>
|
|
/// <param name="taskPKId">起运港未提箱任务主键</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<DataResult<SeaExportOrderExtension>> SearchAndMarkBookingOrder(long taskPKId);
|
|
|
|
/// <summary>
|
|
/// 发送邮件通知给客户
|
|
/// </summary>
|
|
/// <param name="taskPKId">起运港未提箱主键</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<DataResult> SendEmailToCustomer(long taskPKId);
|
|
}
|
|
}
|