生成-物料收发明细

This commit is contained in:
tongfei
2023-11-17 11:07:39 +08:00
parent e41f1b16aa
commit ae21319ef3
11 changed files with 289 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 物料收发明细-生成dto
/// </summary>
public class InventoryInOutDetailsGenerateDto
{
/// <summary>
/// 仓库编码
/// </summary>
public string StockCode { get; set; }
/// <summary>
/// 仓位ID
/// </summary>
public int SubStockId { get; set; }
/// <summary>
/// 箱ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 单据类型
/// </summary>
public int OrderType { get; set; }
/// <summary>
/// 单据编号
/// </summary>
public string OrderBillNo { get; set; }
/// <summary>
/// 数量:出入库
/// </summary>
public decimal Qty { get; set; }
///// <summary>
///// 结存
///// </summary>
//public decimal SurplusQty { get; set; }
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public int InventoryInOutType { get; set; }
}
}