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.

85 lines
1.9 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.17 换电站日运行统计结果信息
/// </summary>
public class StaDayOpeEnergyVal : ICmd
{
/// <summary>
/// 换电站编码 换电站唯一码,区域码+ 类型码+流水号
/// </summary>
public string sn { get; set; }
/// <summary>
/// 换电站名称 ****换电站
/// </summary>
public string sm { get; set; }
/// <summary>
/// 运行开始时间 比如08:00
/// </summary>
public DateTime st { get; set; }
/// <summary>
/// 运行结束时间 比如18:00
/// </summary>
public DateTime et { get; set; }
/// <summary>
/// 站运行总时长 单位:分钟
/// </summary>
public int tt { get; set; }
/// <summary>
/// 首次换电时刻 格式 ”yyyy-MM-dd HH:mm:ss ”
/// </summary>
public DateTime ft { get; set; }
/// <summary>
/// 结束换电时刻 格式 ”yyyy-MM-dd HH:mm:ss ”
/// </summary>
public DateTime sp { get; set; }
/// <summary>
/// 换电总时长 单位: 秒
/// </summary>
public float ts { get; set; }
/// <summary>
/// 换电总次数 换电总次数
/// </summary>
public int tc { get; set; }
/// <summary>
/// 充电总次数 充电总次数
/// </summary>
public int cc { get; set; }
/// <summary>
/// 运营状态
/// </summary>
public byte os { get; set; }
/// <summary>
/// 平均换电时长 单位:秒
/// </summary>
public float at { get; set; }
/// <summary>
/// 平均充电时长 单位:分钟
/// </summary>
public float ct { get; set; }
/// <summary>
/// 换电日期 精确到 日。格式 ” yyyy-MM-dd”如2020-11-20)
/// </summary>
public DateTime dt { get; set; }
public string GetCmd()
{
return CloudConst.staDayOpeEnergyVal;
}
}