Files
16-Xikai-MesProjectNew/Interface_WebAPI/SlMesDbIterface/MOM_Upload/DeviceInfo.cs
2026-05-29 09:34:04 +08:00

30 lines
620 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MisDataSaveDate.MOM
{
/// <summary>
/// 缓存位置查询
/// </summary>
public class DeviceInfo
{
/// <summary>
/// 请求编号
/// </summary>
public string id { get; set; } = "";
/// <summary>
/// 请求方标识
/// </summary>
public string callcode { get; set; } = "";
/// <summary>
/// 工位号
/// </summary>
public string containerNo { get; set; } = "";
}
}