VM_StationACK.cs
713 Bytes
using PropertyChanged;
namespace HH_WCS_Standard
{
[ImplementPropertyChanged]
public class VM_StationACK : VM_WriteModel
{
public VM_StationACK(string name) : base(name)
{
}
/// <summary>
/// 报文名称
/// </summary>
public int MessageID { get; set; }
/// <summary>
/// 装载状态
/// </summary>
public int LoadingStatus { get; set; }
/// <summary>
/// 读码器编号
/// </summary>
public int ScannerNr { get; set; }
public override void Clear()
{
MessageID = 0;
LoadingStatus = 0;
ScannerNr = 0;
}
}
}