using MonitoringTechnology.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MonitoringTechnology.Models { /// /// 系统运行状态表 /// public class OperationModel : NotifyBase { /// /// 序号 /// public string _num { get; set; } public string Num { get { return _num; } set { _num = value; this.DoNotify(); } } /// /// 时间 /// public string _time { get; set; } public string Time { get { return _time; } set { _time = value;this.DoNotify(); } } /// /// 信息 /// public string _message { get; set; } public string Message { get { return _message; } set { _message = value;this.DoNotify(); } } /// /// 电压1 /// public string _voltage1 { get; set; } public string Voltage1 { get { return _voltage1; } set { _voltage1 = value;this.DoNotify(); } } /// /// 电压2 /// public string _voltage2 { get; set; } public string Voltage2 { get { return _voltage2; } set { _voltage2 = value;this.DoNotify(); } } /// /// 电压3 /// public string _voltage3 { get; set; } public string Voltage3 { get { return _voltage3; } set { _voltage3 = value; this.DoNotify(); } } /// /// 电压4 /// public string _voltage4; public string Voltage4 { get { return _voltage4; } set { _voltage4 = value; this.DoNotify(); } } /// /// 电压5 /// public string _voltage5; public string Voltage5 { get { return _voltage5; } set { _voltage5 = value;this.DoNotify(); } } /// /// 电流1 /// public string _ele_curren1; public string Ele_curren1 { get { return _ele_curren1; } set { _ele_curren1 = value;this.DoNotify(); } } /// /// 电流2 /// public string _ele_curren2; public string ele_curren2 { get { return _ele_curren2; } set { _ele_curren2 = value;this.DoNotify(); } } /// /// 电流3 /// public string _ele_curren3; public string ele_curren3 { get { return _ele_curren3; } set { _ele_curren3 = value;this.DoNotify(); } } /// /// 电流4 /// public string _ele_curren4; public string ele_curren4 { get { return _ele_curren4; } set { _ele_curren4 = value;this.DoNotify(); } } /// /// 电流5 /// public string _ele_curren5; public string ele_curren5 { get { return _ele_curren5; } set { _ele_curren5 = value;this.DoNotify(); } } /// /// 温度 /// public string _temperature; public string Temperature { get { return _temperature; } set { _temperature = value; this.DoNotify(); } } /// /// 湿度 /// public string _humidity; public string Humidity { get { return _humidity; } set { _humidity = value;this.DoNotify(); } } /// /// 气压 /// public string _pressure; public string Pressure { get { return _pressure; } set { _pressure = value;this.DoNotify(); } } } }