获取箱库存明细-根据箱号-pad

This commit is contained in:
tongfei
2023-11-13 17:19:14 +08:00
parent 1deb28b28d
commit aee5ba78a2
9 changed files with 156 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ namespace WMS.Web.Domain.Entitys
/// <summary>
/// 序列号集
/// </summary>
public string SerialNumbers { get; set; }
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 物料库存数量
/// </summary>

View File

@@ -19,6 +19,13 @@ namespace WMS.Web.Domain.Infrastructure
/// <param name="dto"></param>
/// <returns></returns>
Task<ResultPagedList<BoxInventoryQueryResponse>> GetPagedList(BoxInventoryQueryRequest dto);
/// <summary>
/// 明细集合-根据箱号
/// </summary>
/// <param name="boxBillNo"></param>
/// <returns></returns>
Task<List<BoxInventoryDetailsDto>> GetListDetailsBy(string boxBillNo);
/// <summary>
/// 批量添加
/// </summary>