ERP对接WMS接口

This commit is contained in:
qianjiawei
2023-12-08 17:05:10 +08:00
parent ad65e9fd0d
commit 3a7a0dd572
6 changed files with 587 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.ErpInputs
{
public class AllotInput
{
/// <summary>
/// 起始库位ID
/// </summary>
public string startlocation { get; set; } = string.Empty;
/// <summary>
/// 目标库位ID
/// </summary>
public string endlocation { get; set; } = string.Empty;
/// <summary>
/// 单据状态
/// </summary>
public string status { get; set; } = string.Empty;
/// <summary>
/// 业务类型:
/// </summary>
public string biz_type { get; set; } = string.Empty;
/// <summary>
/// 所属仓库
/// </summary>
public string warehouse { get; set; } = string.Empty;
}
}