|
|
|
@ -1,9 +1,11 @@
|
|
|
|
|
using Azure.Storage.Blobs.Models;
|
|
|
|
|
using DS.Module.Core;
|
|
|
|
|
using DS.Module.Core.Attributes;
|
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
using DS.Module.DjyServiceStatus;
|
|
|
|
|
using DS.WMS.Core.Op.Dtos;
|
|
|
|
|
using DS.WMS.Core.Op.Interface;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.Owin.Security.Provider;
|
|
|
|
|
using Org.BouncyCastle.Crypto;
|
|
|
|
@ -294,8 +296,8 @@ namespace DS.WMS.OpApi.Controllers
|
|
|
|
|
/// <param name="slotBookingNo">订舱编号</param>
|
|
|
|
|
/// <param name="CarrierId">船公司ID</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("QueryBookingSlot")]
|
|
|
|
|
[HttpGet("QueryBookingSlot")]
|
|
|
|
|
[ApiUser(ApiCode = "BCTaskManage"), AllowAnonymous]
|
|
|
|
|
public async Task<DataResult<long>> QueryBookingSlot([FromQuery] string slotBookingNo, [FromQuery] string CarrierId)
|
|
|
|
|
{
|
|
|
|
|
return await _bookingSlotService.QueryBookingSlot(slotBookingNo, CarrierId);
|
|
|
|
|