增加搜索条件

This commit is contained in:
18942506660
2024-04-16 09:35:37 +08:00
parent ae823fad3e
commit 69de798d88
5 changed files with 77 additions and 2 deletions

View File

@@ -26,5 +26,10 @@ namespace WMS.Web.Domain.Infrastructure
Task<OutStockInfoResponse> GetInfo(int id);
//获取出库单明细
Task<List<BoxDetailResponse>> GetDetailsByBoxId(int boxId);
/// 根据出库序列码搜索
Task<List<OutStock>> GetEntityListBySerialNumbers(List<string> serialNumbers);
/// 根据出库箱号搜索
Task<List<OutStock>> GetEntityListByBoxBillNos(List<string> boxBillNos);
}
}