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.
30 lines
876 B
30 lines
876 B
namespace BatCharging.Service
|
|
{
|
|
public class S2MBRACHSUMTEMP2
|
|
{
|
|
/// <summary>
|
|
/// 支路1单体平均温度
|
|
/// </summary>
|
|
public byte Bran1CellAvgTemp { get; set; }
|
|
/// <summary>
|
|
/// 支路2单体平均温度
|
|
/// </summary>
|
|
public byte Bran2CellAvgTemp { get; set; }
|
|
/// <summary>
|
|
/// 支路3单体平均温度
|
|
/// </summary>
|
|
public byte Bran3CellAvgTemp { get; set; }
|
|
/// <summary>
|
|
/// 支路4单体平均温度
|
|
/// </summary>
|
|
public byte Bran4CellAvgTemp { get; set; }
|
|
/// <summary>
|
|
/// Pack真实最小SOC(高精度)
|
|
/// </summary>
|
|
public double PackMinSOC { get; set; }
|
|
/// <summary>
|
|
/// 预留位
|
|
/// </summary>
|
|
public ushort BranTempReserved1 { get; set; }
|
|
}
|
|
} |