This commit is contained in:
tongfei
2024-03-26 14:42:38 +08:00
parent 888a7c2383
commit 217b197ed5
3 changed files with 49 additions and 0 deletions

View File

@@ -85,5 +85,12 @@ namespace WMS.Web.Core.Dto.InStockTask
/// 明细备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 物料对应的仓位有哪些
/// </summary>
public List<MaterialSubStock> MaterialSubStocks { get; set; } = new List<MaterialSubStock>();
}
}

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
/// <summary>
/// 物料对应的仓位有哪些
/// </summary>
public class MaterialSubStock
{
/// <summary>
/// 仓位编码
/// </summary>
public string SubStockCode { get; set; }
/// <summary>
/// 仓位名称
/// </summary>
public string SubStockName { get; set; }
}
}