using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
public class BrachSumTemp2 : ASDU
{
///
/// 支路1单体平均温度
///
[Property(0, 8)]
public byte Bran1CellAvgTemp { get; set; }
///
/// 支路2单体平均温度
///
[Property(8, 8)]
public byte Bran2CellAvgTemp { get; set; }
///
/// 支路3单体平均温度
///
[Property(16, 8)]
public byte Bran3CellAvgTemp { get; set; }
///
/// 支路4单体平均温度
///
[Property(24, 8)]
public byte Bran4CellAvgTemp { get; set; }
///
/// Pack真实最小SOC(高精度)
///
[Property(32, 16)]
public double PackMinSOC { get; set; }
///
/// 预留位
///
[Property(48, 16)]
public ushort BranTempReserved1 { get; set; }
}
}