using DS.Module.Core; using DS.WMS.Core.Op.Dtos; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Interface { public interface IBookingSlotStockService { /// /// 计算舱位库存 /// /// 请求参数 /// 返回回执 Task> BookingSlotStock(BookingSlotStockUpdateModel paraObj); /// /// 重新计算某租户下面所有的库存 /// /// Task RefreshAllStock(); } }