This commit is contained in:
tongfei
2023-11-16 14:36:00 +08:00
22 changed files with 434 additions and 163 deletions

View File

@@ -31,6 +31,11 @@ namespace WMS.Web.Core.Dto.OutStock
[Required(ErrorMessage = "出库数量不能为空")]
public decimal Qty { get; set; }
/// <summary>
/// 箱Id
///</summary>
[Required(ErrorMessage = "箱不能为空")]
public int BoxId { get; set; }
/// <summary>
/// 序列号集
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();

View File

@@ -18,6 +18,14 @@ namespace WMS.Web.Core.Dto.OutStockTask
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 仓库编码
///</summary>
public string StockCode { get; set; }
/// <summary>
/// 仓库名
///</summary>
public string StockName { get; set; }
/// <summary>
/// 详情
/// </summary>
public List<GetOutStockTaskByNoDetailsResponse> details { get; set; } = new List<GetOutStockTaskByNoDetailsResponse>();