109 lines
3.3 KiB
C#
109 lines
3.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Models
|
|||
|
|
{
|
|||
|
|
public class F25ReadingAnalyze
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 终端抄表时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime ReadingTime { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前总有功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntTotalActivePower { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相有功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntActivePowerOfA { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相有功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntActivePowerOfB { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相有功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntActivePowerOfC { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前总无功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntTotalReactivePower { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相无功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntReactivePowerOfA { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相无功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntReactivePowerOfB { get;set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相无功功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntReactivePowerOfC { get;set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前总功率因数
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntTotalPowerFactor { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相功率因数
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntPowerFactorOfA { get;set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相功率因数
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntPowerFactorOfB { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相功率因数
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntPowerFactorOfC { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相电压
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntVoltageOfA { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相电压
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntVoltageOfB { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相电压
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntVoltageOfC { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相电流
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntCurrentOfA { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相电流
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntCurrentOfB { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相电流
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntCurrentOfC { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前零序电流
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntZeroSequenceCurrent { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前总视在功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntTotalApparentPower { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前A相视在功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntApparentPowerOfA { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前B相视在功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntApparentPowerOfB { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当前C相视在功率
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal CrntApparentPowerOfC { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|