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 { /// /// Draft比对(格式单比对) /// public interface ITaskDraftCompareService { /// /// 执行邮件Draft比对 /// /// 请求文件 /// 邮件Draft比对请求报文 /// 返回回执 Task ExcuteEmailDraftCompareAsync(IFormFile file, string jsonData); /// /// 获取Draft比对结果详情 /// /// 订舱主键 /// 返回回执 Task GetDraftCompareResultInfo(long bookingId); } }