添加项目文件。

This commit is contained in:
Administrator
2026-08-04 18:36:40 +08:00
parent 16fb9e4f5a
commit a2ecbc795d
616 changed files with 149853 additions and 0 deletions
+85
View File
@@ -0,0 +1,85 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}