分步式调入单-erp数据

This commit is contained in:
tongfei
2023-11-13 09:56:47 +08:00
parent 8a16ea120f
commit ac0ae9e025
5 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp
{
/// <summary>
/// erp分步式调入单-响应对象
/// </summary>
public class ErptTransferinDto
{
/// <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>
/// 调入仓库code
/// </summary>
public string DestStockCode { get; set; }
/// <summary>
/// 调入数量
/// </summary>
public decimal Qty { get; set; }
/// <summary>
/// 明细备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
}
}