获取箱库存明细-根据箱号-pad

This commit is contained in:
tongfei
2023-11-13 17:19:14 +08:00
parent 1deb28b28d
commit aee5ba78a2
9 changed files with 156 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 箱库存
/// </summary>
public class BoxInventoryDto
{
}
/// <summary>
/// 箱库存明细
/// </summary>
public class BoxInventoryDetailsDto
{
/// <summary>
/// 明细ID
/// </summary>
public int DetailsId { get; set; }
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 箱库存ID
/// </summary>
public int BoxInventoryId { get; set; }
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 序列号集
/// </summary>
public List<string> SerialNumbers { get; set; } = new List<string>();
/// <summary>
/// 物料库存数量
/// </summary>
public decimal Qty { get; set; }
}
}