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.

42 lines
1.2 KiB

This file contains ambiguous Unicode characters!

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 dt { get; set; }
/// <summary>
/// 天计算充电能耗值 单位:kWh,保留两位小 数
/// </summary>
public float dc { get; set; }
/// <summary>
/// 天计算换电能耗值 单位:kWh,保留两位小 数
/// </summary>
public float ds { get; set; }
/// <summary>
/// 天计算其它能耗值 单位:kWh,保留两位小 数
/// </summary>
public float dv { 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;
}
}