24 lines
530 B
C#
24 lines
530 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 MESCarryQueryResultInput
|
|
{
|
|
/// <summary>
|
|
/// 组织ID
|
|
/// </summary>
|
|
public string org_id { get; set; }
|
|
/// <summary>
|
|
/// 载具编号
|
|
/// </summary>
|
|
public string carry_code { get; set; }
|
|
}
|
|
}
|