using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class Temp6 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT6CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT6No { get; set; } /// /// 电芯温度26数据有效性 /// [Property(14, 2)] public byte CSCT26QUAL { get; set; } /// /// 电芯温度27数据有效性 /// [Property(16, 2)] public byte CSCT27QUAL { get; set; } /// /// 电芯温度28数据有效性 /// [Property(18, 2)] public byte CSCT28QUAL { get; set; } /// /// 电芯温度29数据有效性 /// [Property(20, 2)] public byte CSCT29QUAL { get; set; } /// /// 电芯温度30数据有效性 /// [Property(22, 2)] public byte CSCT30QUAL { get; set; } /// /// 温度26 /// [Property(24, 8)] public byte CSCT26 { get; set; } /// /// 温度27 /// [Property(32, 8)] public byte CSCT27 { get; set; } /// /// 温度28 /// [Property(40, 8)] public byte CSCT28 { get; set; } /// /// 温度29 /// [Property(48, 8)] public byte CSCT29 { get; set; } /// /// 温度30 /// [Property(56, 8)] public byte CSCT30 { get; set; } } }