出库增加序列号字段

This commit is contained in:
18942506660
2023-11-11 16:18:39 +08:00
parent 2f5e00958f
commit f889ac91db
8 changed files with 117 additions and 35 deletions

View File

@@ -106,6 +106,15 @@ namespace WMS.Web.Repositories
return res.Clone();
}
public async Task<List<SerialNumbers>> GetEntityListByBoxId(int boxId)
{
var res = await _context.SerialNumbers
.Where(f => f.BoxId==boxId)
.ToListAsync();
return res.Clone();
}
/// <summary>
/// 根据序列号
/// </summary>