This commit is contained in:
tongfei
2024-04-16 11:53:45 +08:00
7 changed files with 92 additions and 10 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);
}
}