盘点-库存

This commit is contained in:
tongfei
2023-11-23 15:24:40 +08:00
parent 8cf8dab210
commit a49c85752a
7 changed files with 343 additions and 3 deletions

View File

@@ -0,0 +1,62 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
///
/// </summary>
public class BoxInventoryTakeGenerateDto
{
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public int InventoryInOutType { get; set; }
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 组织编码
/// </summary>
public string OrgCode { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 仓位ID
/// </summary>
public int SubStockId { get; set; }
/// <summary>
/// 明细
/// </summary>
public List<BoxInventoryTakeDetailsGenerateDto> Details { get; set; } = new List<BoxInventoryTakeDetailsGenerateDto>();
}
/// <summary>
///
/// </summary>
public class BoxInventoryTakeDetailsGenerateDto
{
/// <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>();
}
}