移箱-箱库存变更-优化
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user