using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace ProductionLineMonitor.Core.Models
{
///
/// Cim电脑
///
[Table("Cims")]
public class Cim : Base
{
///
/// Topic
///
public string Topic { get; set; }
///
/// 连接状态
///
public bool IsConnected { get; set; }
///
/// 推送时间
///
public DateTime Time { get; set; }
///
/// IP地址
///
public string IpAddress { get; set; }
///
/// 用户名
///
public string User { get; set; }
///
/// PLC通讯状态
///
public bool PLCIsConnected { get; set; }
///
/// EAP通讯状态
///
public bool EAPIsConnected { get; set; }
///
/// 版本号
///
public string Version { get; set; }
///
/// EAP IP
///
public string EAPIP { get; set; }
///
/// EAP Port
///
public int EAPPort { get; set; }
}
}