回退保存请求对象优化

This commit is contained in:
tongfei
2023-11-13 16:13:18 +08:00
parent 42f8a6c049
commit 2eb5a89cf6
2 changed files with 19 additions and 13 deletions

View File

@@ -35,6 +35,6 @@ namespace WMS.Web.Core.Dto.BackRecord
/// 序列号集
/// </summary>
[Required(ErrorMessage = "序列号不能为空")]
public string SerialNumbers { get; set; }
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}