增加MES-WMS接口

This commit is contained in:
FanLian
2023-07-07 16:49:39 +08:00
parent 70634df84d
commit 630678ff23
28 changed files with 1042 additions and 9 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
public class MESCollocationSchemeQueryInput
{
/// <summary>
/// 齐套出库主表
/// </summary>
//public WmsCollocationSchemeH wmsCollocationSchemeH { get; set; }
/// <summary>
/// 产品ID
/// </summary>
public string material_id { get; set; }
/// <summary>
/// 组织ID
/// </summary>
public string org_id { get; set; }
}
}