using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class Temp3 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT3CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT3No { get; set; } /// /// 电芯温度11数据有效性 /// [Property(14, 2)] public byte CSCT11QUAL { get; set; } /// /// 电芯温度12数据有效性 /// [Property(16, 2)] public byte CSCT12QUAL { get; set; } /// /// 电芯温度13数据有效性 /// [Property(18, 2)] public byte CSCT13QUAL { get; set; } /// /// 电芯温度14数据有效性 /// [Property(20, 2)] public byte CSCT14QUAL { get; set; } /// /// 电芯温度15数据有效性 /// [Property(22, 2)] public byte CSCT15QUAL { get; set; } /// /// 温度11 /// [Property(24, 8)] public byte CSCT11 { get; set; } /// /// 温度12 /// [Property(32, 8)] public byte CSCT12 { get; set; } /// /// 温度13 /// [Property(40, 8)] public byte CSCT13 { get; set; } /// /// 温度14 /// [Property(48, 8)] public byte CSCT14 { get; set; } /// /// 温度15 /// [Property(56, 8)] public byte CSCT15 { get; set; } } }