using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MisDataSaveDate.MOM
{
///
/// 缓存位置查询
///
public class DeviceStatus
{
///
/// 请求编号
///
public string MsgId { get; set; } = "";
///
/// 请求方标识
///
public string MsgSource { get; set; } = "";
///
/// 工位号
///
public string OPNo { get; set; } = "";
///
/// 当前状态
///
public int StatusCode { get; set; } = 0;
///
/// 采集时间
///
public string StatusTime { get; set; } = "";
}
}