优化接口

This commit is contained in:
tongfei
2024-04-15 17:27:24 +08:00
parent e28207635c
commit d2e825112a
2 changed files with 3 additions and 3 deletions

View File

@@ -5096,7 +5096,7 @@
</member>
<member name="P:WMS.Web.Core.Dto.OutStockTask.OutStockTaskQueryRequest.BoxBillNos">
<summary>
</summary>
</member>
<member name="P:WMS.Web.Core.Dto.OutStockTask.OutStockTaskQueryRequest.SerialNumbers">

View File

@@ -62,11 +62,11 @@ namespace WMS.Web.Core.Dto
/// <summary>
/// 箱号
/// </summary>
public List<string> BoxBillNos { get; set; }
public List<string> BoxBillNos { get; set; } = new List<string>();
/// <summary>
/// 序列号
/// </summary>
public List<string> SerialNumbers { get; set; }
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}