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 Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// BC任务
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITaskManageBCService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取BC详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pkId">BC主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> GetInfo(string pkId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过任务主键获取BC详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPkId">BC任务主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> GetInfoByTaskId(string taskPkId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取待处理的BC任务(来自邮件解析需要对应订舱,系统会根据用户的订舱台账预配)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> GetToDoBCList();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务ID下载附件
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskPKId">BC任务主键</param>
|
|
|
|
|
/// <returns>返回数据流</returns>
|
|
|
|
|
Task<IActionResult> DownloadFile(string taskPKId);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 检索订舱信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="query">检索条件</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageOrderResultDto> QueryBookingOrderList(BookingOrderBCQuery query);
|
|
|
|
|
}
|
|
|
|
|
}
|