出库-箱库存变更

This commit is contained in:
tongfei
2023-11-16 14:35:41 +08:00
parent a98ecfff21
commit dc3d984bd5
6 changed files with 221 additions and 3 deletions

View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 出库-箱库存变更请求对象
/// </summary>
public class BoxInventoryOutStockGenerateDto
{
/// <summary>
/// 出入库存-方式(详情见枚举值)
/// </summary>
public int InOutInventoryMethod { get; set; }
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<BoxInventoryOutStockDetailsGenerateDto> Details { get; set; } = new List<BoxInventoryOutStockDetailsGenerateDto>();
}
/// <summary>
/// 出库明细-箱库存变更请求对象
/// </summary>
public class BoxInventoryOutStockDetailsGenerateDto
{
/// <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>();
}
}