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.
30 lines
779 B
C#
30 lines
779 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 订舱增值类服务
|
|
/// </summary>
|
|
public interface IBookingValueAddedService
|
|
{
|
|
/// <summary>
|
|
/// 批量下载BC
|
|
/// </summary>
|
|
/// <param name="bookingIds">订舱主键数组</param>
|
|
/// <returns></returns>
|
|
Task<TaskManageOrderResultDto> DownloadBookingConfirm(long[] bookingIds);
|
|
|
|
|
|
/// <summary>
|
|
/// 批量下载Draft
|
|
/// </summary>
|
|
/// <param name="bookingIds">订舱主键数组</param>
|
|
/// <returns></returns>
|
|
Task<TaskManageOrderResultDto> DownloadDraft(long[] bookingIds);
|
|
}
|
|
}
|