using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_IStockRepository; using WIDESEA_Model.Models; namespace WIDESEA_IStockService { public interface IProStockInfoService : IService { IProStockInfoRepository Repository { get; } /// /// 获取可使用库存 /// List GetUseableStocks(string materielCode, int warehoseId); /// /// 分配实际库存 /// List GetOutboundStocks(List stockInfos, decimal needQuantity); } }