namespace Aucma.Core.HwPLc { /// /// PLC /// public class PlcModel { /// /// 编号 /// public int Id { get; set; } /// /// 设备名称 /// public string EquipName { get; set; } /// /// 设备IP /// public string IP { get; set; } /// /// 设备端口 /// public int Port { get; set; } /// /// PLC类型 /// public string PlcType { get; set; } /// /// PLC是否启动 /// public bool Enabled { get; set; } /// /// 是否连接 /// public bool IsConnect { get; set; } /// /// 对象 /// public IPlc plc; } }