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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 起运港未提箱通知服务接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITaskPOLContainerNotPickUpService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取起运港未提箱通知详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPkId">起运港未提箱通知任务主键</param>
|
|
|
|
|
/// <returns>返回详情</returns>
|
|
|
|
|
Task<TaskPOLContainerNotPickUpShowDto> GetInfoByTaskId(string taskPkId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 自动转发起运港未提箱通知
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPKId">起运港未提箱通知任务主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> AutoTransferNotice(string taskPKId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 检索对应的订舱订单
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPKId">起运港未提箱通知任务主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> QueryBookingOrder(string taskPKId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发送邮件通知给客户
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPKId">起运港未提箱通知主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> SendEmailToCustomer(string taskPKId);
|
|
|
|
|
}
|
|
|
|
|
}
|