29 lines
661 B
C#
29 lines
661 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
|
{
|
|
/// <summary>
|
|
/// MES载具查询接口输入
|
|
/// </summary>
|
|
public class MESCarryQueryInput
|
|
{
|
|
/// <summary>
|
|
/// 组织ID
|
|
/// </summary>
|
|
public string org_id { get; set; }
|
|
/// <summary>
|
|
/// 载具编号
|
|
/// </summary>
|
|
public string carry_code { get; set; }
|
|
/// <summary>
|
|
/// 齐套搭配方案名称
|
|
/// </summary>
|
|
public string collocation_scheme_name { get; set; }
|
|
}
|
|
}
|
|
|