using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yunneiWCS.EnumDefine { public class srmEntity { /// stb=1 堆垛机收到发生任务信息 /// /// public string stb { get; set; } /// PLC心跳 /// /// public string handShake { get; set; } /// 设备模式 1=非自动模式,2自动模式 /// /// public string mode { get; set; } /// 设备状态 1=待机 2=执行中 4=报警 /// /// public string state { get; set; } /// /// 状态明细 /// public string stateDetailName { get; set; } /// /// 显示任务执行名称 /// public string srmTaskExcuteName { get; set; } /// 堆垛机当前列数 /// /// public string posY { get; set; } /// 堆垛机当前层数 /// /// public string posZ { get; set; } /// 任务完成 /// /// public string taskFinish { get; set; } /// 报警信息 /// /// public string Alarm_info { get; set; } /// 任务号 /// /// public long TaskID { get; set; } /// 是否有货 /// /// public string haveGoods { get; set; } } }