This commit is contained in:
tongfei
2024-03-26 15:04:29 +08:00
parent 217b197ed5
commit df821329ef
4 changed files with 48 additions and 1 deletions

View File

@@ -9,6 +9,11 @@ namespace WMS.Web.Core.Dto
/// </summary>
public class MaterialSubStock
{
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 仓位编码
/// </summary>
@@ -17,6 +22,6 @@ namespace WMS.Web.Core.Dto
/// <summary>
/// 仓位名称
/// </summary>
public string SubStockName { get; set; }
public string SubStock { get; set; }
}
}