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