移箱-箱库存变更-优化

This commit is contained in:
tongfei
2023-12-29 10:54:16 +08:00
parent 1554afbbf5
commit 141837da18
6 changed files with 96 additions and 35 deletions

View File

@@ -33,5 +33,31 @@ namespace WMS.Web.Core.Dto.Inventory
/// 类型1为入库2为出库
/// </summary>
public int InventoryInOutType { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<BoxInventoryMoveDetailsGenerateDto> Details { get; set; } = new List<BoxInventoryMoveDetailsGenerateDto>();
}
/// <summary>
/// 明细
/// </summary>
public class BoxInventoryMoveDetailsGenerateDto
{
/// <summary>
/// 物料Id
///</summary>
public int MaterialId { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 序列号
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
}
}