using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataCapture_MA.Mes.Dto
{
public class MesEquipmentStatus
{
///
/// 设备序列号
///
public string EquipSerial { get; set; }
///
/// 设备状态
///
public string CurrentStatus { get; set; }
}
}