erp-直接调拨入库

This commit is contained in:
tongfei
2023-11-11 14:57:44 +08:00
parent 49a52b3269
commit 4dc1d364c7
5 changed files with 213 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp
{
/// <summary>
/// erp:直接调拨单-入库
/// </summary>
public class ErpTransferDirectDto
{
/// <summary>
/// 编号
/// </summary>
public string BillNo { get; set; }
/// <summary>
/// 调入库存组织
/// </summary>
public int StockOrgId { get; set; }
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 调入仓库ID
/// </summary>
public int DestStockId { get; set; }
/// <summary>
/// 调入仓库编码
/// </summary>
public string DestStockCode { get; set; }
/// <summary>
/// 调拨数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 明细备注
/// </summary>
public string Remark { get; set; }
}
}