You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
983 B
C#

1 year ago

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