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.

19 lines
496 B

using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
public class BattenergyInfo3 : ASDU
{
/// <summary>
/// 系统站外插枪充电能量(累计)
/// </summary>
[Property(0, 32)]
public float SysAccuChrgEngyOutStat { get; set; }
/// <summary>
/// 电池包行驶里程(累计)
/// </summary>
[Property(32, 32)]
public float SysAccuBattOdometer { get; set; }
}
}