using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto.Inventory;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Infrastructure
{
///
/// 物料收发明细-仓储接口
///
public interface IInventoryInOutDetailsRepositories
{
///
/// 列表-分页
///
///
///
Task> GetPagedList(InventoryInOutDetailsQueryRequest dto);
///
/// 批量添加
///
///
///
///
Task AddRange(List entitys, bool isTransaction = true);
}
}