添加项目文件。

This commit is contained in:
liming 蔡
2026-08-12 10:50:46 +08:00
parent fd3db6a810
commit ca8fec1e3b
298 changed files with 115094 additions and 0 deletions
+79
View File
@@ -0,0 +1,79 @@
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; }
}
}