接口调整

This commit is contained in:
tongfei
2023-11-17 14:12:42 +08:00
parent 5c65ff7c5b
commit 50246572d6
10 changed files with 120 additions and 32 deletions

View File

@@ -128,6 +128,13 @@ namespace WMS.Web.Repositories
return entity.Clone();
}
public async Task<List<Box>> GetEntityListByNos(List<string> billNos)
{
var entity = await _context.Box.Include(x => x.Details)
.Where(f => billNos.Contains(f.BoxBillNo)).ToListAsync();
return entity.Clone();
}
//根据箱号搜索 用来比对确定是否箱号信息是否存在
public async Task<List<string>> GetByNos(List<string> billNos)
{