namespace WIDESEA_IStorageBasicRepository; public interface IDt_BillGroupStockRepository : IRepository { /// /// 获取出库库存 /// /// List GetOutboundStockList(string materialCode); /// /// 更新库存集合 /// /// 库存集合 /// bool UpdateNavStock(List stocks); /// /// 更新单个库存 /// /// 库存 /// bool UpdateNavStock(Dt_BillGroupStock stock); /// /// 根据特定条件获取库存 /// /// 托盘号 /// 货位ID /// 物料编号 /// 特定库存 Task GetStocksAsync(string palletCode = null, string locationID = null, string materialNo = null); }