using BPASmartClient.S7Net; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodSmallStation.Model.Siemens { public class XL_DataColl_DB { [Siemens(16)] public string RecipeCode { get; set; } = ""; [Siemens(16)] public string RecipeName { get; set; } = ""; public bool RawMaterialLack { get; set; } /// /// 上游缺料 /// public bool TopInComplete { get; set; } /// /// 下游堵料 /// public bool DownPutty { get; set; } /// /// 系统启动 /// public bool SystemStart { get; set; } /// /// 系统停止 /// public bool SystemStop { get; set; } /// /// 系统急停 /// public bool SystemEStop { get; set; } /// /// 系统暂停 /// public bool SystemPause { get; set; } /// /// 系统故障 /// public bool SystemAlarm { get; set; } /// /// PLC心跳 /// public bool HeartBeatWithPLC { get; set; } /// /// 系统模式 /// public short Mode { get; set; } /// /// 报警 /// public bool[] Alarm { get; set; } = new bool[24]; public int Standby1 { get; set; } public int Standby2 { get; set; } } }