using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
///
/// 支路单体电压
///
public class BrachSumVolt2 : ASDU
{
///
/// 支路3最高单体电压
///
[Property(0, 16)]
public ushort Bran3MaxCellVolt { get; set; }
///
/// 支路3最低单体电压
///
[Property(16, 16)]
public ushort Bran3MinCellVolt { get; set; }
///
/// 支路4最高单体电压
///
[Property(32, 16)]
public ushort Bran4MaxCellVolt { get; set; }
///
/// 支路4最低单体电压
///
[Property(48, 16)]
public ushort Bran4MinCellVolt { get; set; }
}
}