using BPASmartClient.S7Net; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodBigStation.Model.HK_PLC { public class PlcReadAddressDB45 { [Siemens(16)] public string RecipeCode { get; set; } [Siemens(16)] public string RecipeName { get; set; } /// /// 缺料本机 /// public bool DeviceInComplete { get; set; } /// /// 上游缺料 /// public bool TopInComple { get; set; } /// /// 下游堵料 /// public bool DownWindrow { get; set; } /// /// 设备启动 /// public bool DeviceStart { get; set; } /// /// 设备停止 /// public bool DeviceStop { get; set; } /// /// 设备急停 /// public bool DeviceEStop { get; set; } /// /// 设备暂停 /// public bool DevicePause { get; set; } /// /// 设备故障 /// public bool DeviceAlarm { get; set; } /// /// 上位机给plc的心跳 /// public bool HeartBeat { get; set; } /// /// 设备模式 /// public short DeviceMode { get; set; } /// /// 设备报警 /// public bool[] AlarmInfo { get; set; } = new bool[24]; public int Reserved1 { get; set; } public int Reserved2 { get; set; } } }