序列号集

This commit is contained in:
tongfei
2023-11-13 14:43:15 +08:00
parent 593422e730
commit a28f6bf0bd
5 changed files with 41 additions and 2 deletions

View File

@@ -40,6 +40,6 @@ namespace WMS.Web.Domain.Entitys
/// <summary>
/// 序列号集
/// </summary>
public string SerialNumbers { get; set; }
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}

View File

@@ -53,5 +53,10 @@ namespace WMS.Web.Domain.Entitys
/// 数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 序列号集
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}