using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
public class BrachSumVolt1 : ASDU
{
///
/// 支路1最高单体电压
///
[Property(0, 16)]
public ushort Bran1MaxCellVolt { get; set; }
///
/// 支路1最低单体电压
///
[Property(16, 16)]
public ushort Bran1MinCellVolt { get; set; }
///
/// 支路2最高单体电压
///
[Property(32, 16)]
public ushort Bran2MaxCellVolt { get; set; }
///
/// 支路2最低单体电压
///
[Property(48, 16)]
public ushort Bran2MinCellVolt { get; set; }
}
}