20211124_ZNZT_upperpc/MonitoringTechnology/Models/OperationModel.cs
2023-02-03 08:31:48 +08:00

186 lines
4.2 KiB
C#

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