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.

34 lines
871 B

namespace BatCharging.Service
{
public class S2MPACKINFO
{
/// <summary>
/// SBMU状态报文的CRC
/// </summary>
public byte PackInfoCRC { get; set; }
/// <summary>
/// SBMU生命信号,0~15循环
/// </summary>
public byte PackInfoALIV { get; set; }
/// <summary>
/// 继电器内侧高压_(正值为正向电压,负值为反向电压)
/// </summary>
public float BattInVolt { get; set; }
/// <summary>
/// 箱体累加电压
/// </summary>
public float PackCumulVolt { get; set; }
/// <summary>
/// 箱体电流
/// </summary>
public float PackCurr { get; set; }
/// <summary>
/// 预留位
/// </summary>
public byte PackInfoReserved1 { get; set; }
}
}