盘点增加序列号

This commit is contained in:
18942506660
2023-11-23 14:38:39 +08:00
parent 3080c50e0b
commit 8cf8dab210
5 changed files with 19 additions and 3 deletions

View File

@@ -40,6 +40,11 @@ namespace WMS.Web.Core.Dto.TakeStock
[Required(ErrorMessage = "盘点数量数量不能为空")]
public decimal AfterQty { get; set; }
/// <summary>
/// 序列号
/// </summary>
[Required(ErrorMessage = "序列号不能为空")]
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }