This commit is contained in:
tongfei
2023-11-03 17:14:51 +08:00
parent 02467377ef
commit c3831602aa
2 changed files with 2 additions and 2 deletions

View File

@@ -955,7 +955,7 @@
来源单号 来源单号
</summary> </summary>
</member> </member>
<member name="F:WMS.Web.Core.Dto.InStockTask.InStockTaskInfoDto.Details"> <member name="P:WMS.Web.Core.Dto.InStockTask.InStockTaskInfoDto.Details">
<summary> <summary>
明细 明细
</summary> </summary>

View File

@@ -25,6 +25,6 @@ namespace WMS.Web.Core.Dto.InStockTask
/// <summary> /// <summary>
/// 明细 /// 明细
/// </summary> /// </summary>
public List<InStockTaskDetailsInfoDto> Details = new List<InStockTaskDetailsInfoDto>(); public List<InStockTaskDetailsInfoDto> Details { get; set; } = new List<InStockTaskDetailsInfoDto>();
} }
} }