即时库存-服务

This commit is contained in:
tongfei
2023-11-17 13:33:10 +08:00
parent fc31334876
commit 619cea05f2
8 changed files with 225 additions and 2 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 即时库存明细生成dto
/// </summary>
public class InventoryDetailsGenerateDto
{
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 仓库
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 仓位ID
/// </summary>
public int SubStockId { get; set; }
/// <summary>
/// 数量:出入库
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public int InventoryInOutType { get; set; }
}
}