实体
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
22
src/WMS.Web.Core/Dto/MaterialSubStock.cs
Normal file
22
src/WMS.Web.Core/Dto/MaterialSubStock.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user