JiShe.CollectBus/shared/JiShe.CollectBus.Common/Models/CurrentPositiveActiveEnergyAnalyze.cs
2025-04-17 20:28:50 +08:00

43 lines
957 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Common.Models
{
/// <summary>
/// 当前正向有功电能
/// </summary>
public class CurrentPositiveActiveEnergyAnalyze
{
/// <summary>
/// 终端抄表时间
/// </summary>
public DateTime ReadingTime { get; set; }
/// <summary>
/// 费率数
/// </summary>
public int RateNumber { get; set; }
/// <summary>
/// 正向有功总电脑
/// </summary>
public decimal Total { get; set; }
/// <summary>
/// 费率{0}正向有功总电脑
/// </summary>
public List<PositiveActiveEnergyItem> Items { get; set; }
}
public class PositiveActiveEnergyItem
{
public string Name { get; set; }
public decimal Value { get; set; }
}
}