2025-04-24 19:31:28 +08:00

56 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Protocol.Contracts.Protocol.Dto
{
public class AFN12_F33_AnalysisDto
{
/// <summary>
/// 终端抄表时间
/// </summary>
public string ReadTime { get; set; }
/// <summary>
/// 费率数M1≤M≤12
/// </summary>
public int RatingCount { get; set; }
/// <summary>
/// 当前正向有功总电能示值
/// </summary>
public ParentNodes F_A_Kwh { get; set; }
/// <summary>
/// 当前正向无功组合无功1总电能示值
/// </summary>
public ParentNodes R_R_Kvarh { get; set; }
/// <summary>
/// 当前一象限无功总电能示值
/// </summary>
public ParentNodes Q1_R_Kvarh { get; set; }
/// <summary>
/// 当前四象限无功总电能示值
/// </summary>
public ParentNodes Q4_R_Kvarh { get; set; }
}
public class ParentNodes
{
/// <summary>
/// 总电能示值
/// </summary>
public decimal Total_Value { get; set; }
public List<ChildNodes> childNodes { get; set; }
}
public class ChildNodes
{
/// <summary>
/// 费率总电能示值
/// </summary>
public decimal Value { get; set; }
}
}