箱集合查询序列号
This commit is contained in:
@@ -113,6 +113,19 @@ namespace WMS.Web.Repositories
|
||||
|
||||
return res.Clone();
|
||||
}
|
||||
/// <summary>
|
||||
/// 根据箱Ids查询集合
|
||||
/// </summary>
|
||||
/// <param name="boxIds"></param>
|
||||
/// <returns></returns>
|
||||
public async Task<List<SerialNumbers>> GetEntityListByBoxIds(List<int> boxIds)
|
||||
{
|
||||
var res = await _context.SerialNumbers
|
||||
.Where(f => boxIds.Contains(f.BoxId))
|
||||
.ToListAsync();
|
||||
|
||||
return res.Clone();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据序列号
|
||||
|
||||
Reference in New Issue
Block a user