接口调整

This commit is contained in:
tongfei
2023-11-17 14:12:42 +08:00
parent 5c65ff7c5b
commit 50246572d6
10 changed files with 120 additions and 32 deletions

View File

@@ -18,9 +18,8 @@ namespace WMS.Web.Core.Dto.InStockTask
public int TaskId { get; set; }
/// <summary>
/// 箱号
/// 箱号集合
/// </summary>
[Required(ErrorMessage = "箱号不能为空")]
public string BoxBillNo { get; set; }
public List<string> BoxBillNos { get; set; } = new List<string>();
}
}