using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class Temp4 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT4CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT4No { get; set; } /// /// 电芯温度16数据有效性 /// [Property(14, 2)] public byte CSCT16QUAL { get; set; } /// /// 电芯温度17数据有效性 /// [Property(16, 2)] public byte CSCT17QUAL { get; set; } /// /// 电芯温度18数据有效性 /// [Property(18, 2)] public byte CSCT18QUAL { get; set; } /// /// 电芯温度19数据有效性 /// [Property(20, 2)] public byte CSCT19QUAL { get; set; } /// /// 电芯温度20数据有效性 /// [Property(22, 2)] public byte CSCT20QUAL { get; set; } /// /// 温度16 /// [Property(24, 8)] public byte CSCT16 { get; set; } /// /// 温度17 /// [Property(32, 8)] public byte CSCT17 { get; set; } /// /// 温度18 /// [Property(40, 8)] public byte CSCT18 { get; set; } /// /// 温度19 /// [Property(48, 8)] public byte CSCT19 { get; set; } /// /// 温度20 /// [Property(56, 8)] public byte CSCT20 { get; set; } } }