using Service.Cloud.Common; namespace Service.Cloud.Msg.Host.Req; /// /// 5.2.1 换电站上报电池状态分布统计信息 /// public class BatteryTotal : ICmd { /// /// 换电站编码 换电站唯一码,区域码+类型码+流水号 /// public string sn { get; set; } /// /// 换电站中的电 池包总数量 /// public int btc { get; set; } /// /// 电池型号编号 /// public string sm { get; set; } /// /// 电池型号名称 /// public string bn { get; set; } /// /// 电池数量 同型号 /// public int bc { get; set; } /// /// 满足可换数量 同型号 /// public int ct { get; set; } /// /// 正在充电数量 同型号 /// public int cc { get; set; } /// /// 剩余可充数量 同型号 /// public int ca { get; set; } /// /// 更新时间 格式” yyyy-MM-dd HH:mm:ss” /// public DateTime ut { get; set; } public string GetCmd() { return CloudConst.batteryTotal; } }