箱集合查询序列号

This commit is contained in:
18942506660
2023-11-14 15:03:30 +08:00
parent 403c2df59b
commit 3f22b2b9a7
2 changed files with 15 additions and 0 deletions

View File

@@ -25,6 +25,8 @@ namespace WMS.Web.Domain.Infrastructure
Task<List<SerialNumbers>> GetEntityList(List<string> serialNumbers);
/// 根据箱Id查询集合
Task<List<SerialNumbers>> GetEntityListByBoxId(int boxId);
/// 根据箱Ids查询集合
Task<List<SerialNumbers>> GetEntityListByBoxIds(List<int> boxIds);
/// 修改实体集合
Task<bool> EditEntityList(List<SerialNumbers> entitys, bool isTransaction = true);
}