出库增加序列号字段
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user