using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Web.Core.Dto; using WMS.Web.Core.Internal.Results; using WMS.Web.Domain.Entitys; namespace WMS.Web.Domain.Infrastructure { /// /// wms入库单-仓储接口 /// public interface IInStockRepositories { /// /// 列表-分页 /// /// /// Task<(List list,int total)> GetPagedList(InStockQueryRequest dto); /// /// 添加 /// /// /// /// Task Add(InStock entity, bool isTransaction = true); } }