增加仓位编码

This commit is contained in:
18942506660
2024-03-16 14:59:29 +08:00
parent 2fe53f59e5
commit 405b414912
2 changed files with 9 additions and 0 deletions

View File

@@ -48,6 +48,10 @@ namespace WMS.Web.Core.Dto.OutStock
/// </summary>
public int SubStockId { get; set; }
/// <summary>
/// 仓位
/// </summary>
public string SubStockCode { get; set; }
/// <summary>
/// 序列号集
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();

View File

@@ -40,6 +40,11 @@ namespace WMS.Web.Domain.Entitys
[Column("SubStockId")]
public int SubStockId { get; set; }
/// <summary>
/// 仓位
/// </summary>
[Column("SubStockCode")]
public string SubStockCode { get; set; }
/// <summary>
/// 出库数量
///</summary>
[Column("Qty")]