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.
51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using Myshipping.Core;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using Myshipping.Application.Entity;
|
|
using Myshipping.Application.Service.BookingOrder.Dto;
|
|
using Microsoft.AspNetCore.Http;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public interface IBookingOrderService
|
|
{
|
|
|
|
Task Delete(string Ids);
|
|
|
|
|
|
Task<BookingOrderOutput> Get(long Id);
|
|
Task<dynamic> Page([FromQuery] BookingOrderInput input);
|
|
Task<List<BookingLogDto>> GetLog(long Id);
|
|
|
|
Task<IActionResult> Download(long id);
|
|
Task<List<BookingRemark>> GetRemark(long Id);
|
|
|
|
Task AddRemark(BookingRemarkDto dto);
|
|
|
|
|
|
Task AddFile(IFormFile file, [FromForm] BookingFileDto dto);
|
|
|
|
Task<List<BookingFile>> GetFile(long Id);
|
|
|
|
|
|
|
|
Task<List<BookingStatusLogDto>> GetBookingStatusLog(long Id);
|
|
|
|
|
|
Task AddBookingStatusLog(List<BookingStatusLogDto> all);
|
|
|
|
/// <summary>
|
|
/// 发送订舱、截单EDI
|
|
/// </summary>
|
|
/// <param name="model">订舱、截单EDI请求</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<string> SendBookingOrClosingEDI (BookingOrClosingEDIOrderDto model);
|
|
|
|
Task BachUpdate(BatchUpdate dto);
|
|
|
|
Task<string> InnerBookingOrClosingEDI(BookingOrClosingEDIOrderDto model);
|
|
|
|
Task<dynamic> SendBookingOrder(long[] ids);
|
|
}
|
|
} |