using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
///
/// HVB绝缘检测
///
public class IsoInfo : ASDU
{
///
/// HVB绝缘检测数据的CRC
///
[Property(0, 8)]
public byte ISOCRC { get; set; }
///
/// HVB绝缘检测数据的生命信号,0~15循环
///
[Property(8, 4)]
public byte ISOALIV { get; set; }
///
/// HVB绝缘采样电压采样有效标志
///
[Property(12, 1)]
public byte ISOVoltVld { get; set; }
///
/// 绝缘采样使能状态0-禁止1-使能
///
[Property(13, 1)]
public byte ISOISOSampEnStatus { get; set; }
///
/// 预留位
///
[Property(14, 2)]
public byte ISOReserved1 { get; set; }
///
/// 主正对机壳的有效绝缘阻值
///
[Property(16, 16)]
public ushort ISOIsoResPos { get; set; }
///
/// 主负对机壳的有效绝缘阻值
///
[Property(32, 16)]
public ushort ISOIsoResNeg { get; set; }
///
/// 发给直流充电机剩余充电时间
///
[Property(48, 16)]
public ushort ReminChrgTime { get; set; }
}
}