出库增加序列号字段

This commit is contained in:
18942506660
2023-11-11 16:18:39 +08:00
parent 2f5e00958f
commit f889ac91db
8 changed files with 117 additions and 35 deletions

View File

@@ -38,6 +38,11 @@ namespace WMS.Web.Domain.Entitys
[Column("MaterialId")]
public int MaterialId { get; set; }
/// <summary>
/// 序列号
/// </summary>
[Column("SerialNumbers")]
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 仓库
///</summary>
[Column("StockCode")]