using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Comm.PLCDBItem { public class Oiling_machine { /// /// 对象集合 /// public static List Oiling_machineDBItem = new List(); /// /// 名称 /// public string Name { get; set; } /// /// 自动模式 /// public bool R_Automatic_mode{ get; set; } /// /// 手动模式 /// public bool R_Manual_mode { get; set; } /// /// 自动运行中 /// public bool R_AutoRunning { get; set; } /// /// 1:无故障, 0:有故障 /// public bool R_NO_FAULT { get; set; } /// /// 设备上电 /// public bool R_state_power_on { get; set; } /// /// /// public bool R_state_automatic_se_lected { get; set; } /// /// 急停信号 /// public bool R_EstopOK { get; set; } /// /// 车轮到达喷油链条 /// public bool R_WheelOnPosition { get; set; } /// /// 车轮SN号 /// public string R_Wheel_SN { get; set; } /// /// 车轮类型 /// public Int16 R_Wheel_Type { get; set; } /// /// /// public byte R_Part_Status { get; set; } /// /// /// public byte R_Part_Process { get; set; } } }