80 lines
1.9 KiB
C#
80 lines
1.9 KiB
C#
namespace JinYuan.Models
|
|||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 智能电表
|
||
|
|
/// </summary>
|
||
|
|
public class ElectricEnergy
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 有功电能(累计电能)KWH
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? AccumulatedElectricity { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A相电压 V
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseVoltageA { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// B相电压
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseVoltageB { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// C相电压
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseVoltageC { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A相电流
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseCurrentA { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// B相电流
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseCurrentB { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// C相电流
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhaseCurrentC { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A相功率
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhasePowerA { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// B相功率
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhasePowerB { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// C相功率
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PhasePowerC { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 总有功功率
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? ActivePower { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 总功率因数
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? PowerFactor { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电压变比
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? pt { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 电流变比
|
||
|
|
/// </summary>
|
||
|
|
public System.Decimal? ct { get; set; }
|
||
|
|
}
|
||
|
|
}
|