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.
|
|
|
|
namespace Service.Cloud.Msg.Host.Req;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 5.2.3 换电站充电电池电量分布统计信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ChargingTotalDis
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换电站编码 换电站唯一码,区域码+ 类型码+流水号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string sn { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电池型号编号 未分型号之前,默认-99999999
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string bs { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电池型号名称 名称:默认型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string bn { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 高电量电池数量 90%--95%(同型号)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int hc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 中电量电池数量 80%--90%(同型号)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int mc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 低电量电池数量 0%--80%(同型号)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int lc { get; set; }
|
|
|
|
|
}
|