using WIDESEA_Core.BaseRepository; using WIDESEA_Model.Models; namespace WIDESEA_IRepository { public interface IDt_BillGroupStockRepository : IRepository { /// /// 获取出库库存 /// /// List GetOutboundStockList(); /// /// 更新库存集合 /// /// 库存集合 /// bool UpdateNavStock(List stocks); /// /// 更新单个库存 /// /// 库存 /// bool UpdateNavStock(Dt_BillGroupStock stock); } }