This commit is contained in:
tongfei
2024-01-05 11:12:35 +08:00
parent d3a62e9a7b
commit 269eefe68b
6 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 即时库存明细汇总
/// </summary>
public class InventoryDetailsSummaryResponse
{
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 组织编码
/// </summary>
public string OrgCode { get; set; }
/// <summary>
/// 仓库编码
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 库存量
/// </summary>
public decimal Qty { get; set; }
}
}