43 lines
957 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|