using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class Temp2 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT2CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT2No { get; set; } /// /// 电芯温度6数据有效性 /// [Property(14, 2)] public byte CSCT06QUAL { get; set; } /// /// 电芯温度7数据有效性 /// [Property(16, 2)] public byte CSCT07QUAL { get; set; } /// /// 电芯温度8数据有效性 /// [Property(18, 2)] public byte CSCT08QUAL { get; set; } /// /// 电芯温度9数据有效性 /// [Property(20, 2)] public byte CSCT09QUAL { get; set; } /// /// 电芯温度10数据有效性 /// [Property(22, 2)] public byte CSCT10QUAL { get; set; } /// /// 温度6 /// [Property(24, 8)] public byte CSCT06 { get; set; } /// /// 温度7 /// [Property(32, 8)] public byte CSCT07 { get; set; } /// /// 温度8 /// [Property(40, 8)] public byte CSCT08 { get; set; } /// /// 温度9 /// [Property(48, 8)] public byte CSCT09 { get; set; } /// /// 温度10 /// [Property(56, 8)] public byte CSCT10 { get; set; } } }