You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Service.Cloud.Common ;
namespace Service.Cloud.Msg.Host.Req ;
/// <summary>
/// 5.2.15 换电站每天用电统计信息
/// </summary>
public class StaDayEnergyVal : ICmd
{
/// <summary>
/// 换电站编码
/// </summary>
public string sn { get ; set ; }
/// <summary>
/// 天计算总量能耗值 单位:kWh,保留两位小 数
/// </summary>
public float ht { get ; set ; } //原dt改ht, 和小时字段一致, 云平台说的, 下面几个字段一样
/// <summary>
/// 天计算充电能耗值 单位:kWh,保留两位小 数
/// </summary>
public float hc { get ; set ; }
/// <summary>
/// 天计算换电能耗值 单位:kWh,保留两位小 数
/// </summary>
public float hs { get ; set ; }
/// <summary>
/// 天计算其它能耗值 单位:kWh,保留两位小 数
/// </summary>
public float ho { get ; set ; }
/// <summary>
/// 开始时间 精确到天。格式”yyyy-MM-dd”( 如2020-11-20 )
/// </summary>
public DateTime st { get ; set ; }
/// <summary>
/// 结束时间 精确到天。格式”yyyy-MM-dd”( 如2020-11-21)
/// </summary>
public DateTime et { get ; set ; }
public string GetCmd ( )
{
return CloudConst . staDayEnergyVal ;
}
}