更改了非采购上架

This commit is contained in:
2025-05-12 11:26:23 +08:00
parent bdfbd1468e
commit c447f4bbf3
8 changed files with 85 additions and 4 deletions

View File

@@ -64,6 +64,14 @@ namespace WMS.Web.Domain.Entitys
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
///// <summary>
///// 物料编码测试
///// </summary>
//public string MaterialNumber2 { get; set; }
/// <summary>
/// 数量
/// </summary>
@@ -74,6 +82,13 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 第二个序列号集
/// </summary>
[NotMapped]
public List<string> TwoSerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 是否已发送
/// </summary>

View File

@@ -49,5 +49,12 @@ namespace WMS.Web.Domain.Entitys
/// 序列号集
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 第二个序列号集
/// </summary>
[NotMapped]
public List<string> TwoSerialNumbers { get; set; } = new List<string>();
}
}