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
817 B
30 lines
817 B
namespace BatCharging.Service
|
|
{
|
|
public class S2MCSCSUMVOLT
|
|
{
|
|
/// <summary>
|
|
/// 温度数据CRC
|
|
/// </summary>
|
|
public byte CSCSumVCRC { get; set; }
|
|
/// <summary>
|
|
/// CSC号
|
|
/// </summary>
|
|
public byte CSCSumVNo { get; set; }
|
|
/// <summary>
|
|
/// 预留位
|
|
/// </summary>
|
|
public byte CSCSumVReserved1 { get; set; }
|
|
/// <summary>
|
|
/// CSC最高单体电压
|
|
/// </summary>
|
|
public ushort CSCMaxCellVolt { get; set; }
|
|
/// <summary>
|
|
/// CSC最低单体电压
|
|
/// </summary>
|
|
public ushort CSCMinCellVolt { get; set; }
|
|
/// <summary>
|
|
/// CSC单体平均电压
|
|
/// </summary>
|
|
public ushort CSCCellAvgVolt { get; set; }
|
|
}
|
|
} |