using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Web.Core.Dto; using WMS.Web.Domain.Entitys; namespace WMS.Web.Domain.Infrastructure { /// /// 老ops箱信息 /// public interface IBoxRepositories { Task Get(int id); Task GetByNo(string billNo); //根据箱号搜索 用来比对确定是否箱号信息是否存在 Task> GetByNos(List billNos); //根据箱号查询明细信息 Task> GetBox(List billNos); //批量修改 Task EditEntityList(List entitys, bool isTransaction = true); /// /// 批量添加 /// /// /// /// Task AddRange(List entitys, bool isTransaction = true); /// 查询实体集合 Task> GetEntityList(List ids); Task> GetEntityListByNos(List billNos); } }