调整序列号

This commit is contained in:
18942506660
2023-11-11 15:53:26 +08:00
parent 3aa36adfec
commit b461c9c908
9 changed files with 251 additions and 30 deletions

View File

@@ -158,5 +158,19 @@ namespace WMS.Web.Repositories
return false;
}
}
/// <summary>
/// 获取箱集合
/// </summary>
/// <param name="ids"></param>
/// <returns></returns>
public async Task<List<Box>> GetEntityList(List<int> ids)
{
var res = await _context.Box
.Include(s => s.Details)
.Where(f => ids.Contains(f.Id))
.ToListAsync();
return res.Clone();
}
}
}