接口调整
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user