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.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Draft比对(格式单比对)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITaskDraftCompareService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 执行邮件Draft比对
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="file">请求文件</param>
|
|
|
|
|
/// <param name="jsonData">邮件Draft比对请求报文</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
Task<TaskManageExcuteResultDto> ExcuteEmailDraftCompareAsync(IFormFile file, string jsonData);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取Draft比对结果详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="bookingId">订舱主键</param>
|
|
|
|
|
/// <returns>返回回执</returns>
|
|
|
|
|
|
|
|
|
|
Task<TaskManageExcuteResultDto> GetDraftCompareResultInfo(long bookingId);
|
|
|
|
|
}
|
|
|
|
|
}
|