查询条件

This commit is contained in:
tongfei
2024-04-15 17:25:27 +08:00
2 changed files with 18 additions and 0 deletions

View File

@@ -5094,6 +5094,16 @@
仓库编码
</summary>
</member>
<member name="P:WMS.Web.Core.Dto.OutStockTask.OutStockTaskQueryRequest.BoxBillNos">
<summary>
编号
</summary>
</member>
<member name="P:WMS.Web.Core.Dto.OutStockTask.OutStockTaskQueryRequest.SerialNumbers">
<summary>
序列号
</summary>
</member>
<member name="T:WMS.Web.Core.Dto.OutStock.OutStockInfoResponse">
<summary>
出库单详情

View File

@@ -49,5 +49,13 @@ namespace WMS.Web.Core.Dto.OutStockTask
/// 仓库编码
///</summary>
public string StockCode { get; set; }
/// <summary>
/// 箱号
/// </summary>
public List<string> BoxBillNos { get; set; } = new List<string>();
/// <summary>
/// 序列号
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}