using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { /// /// 电芯温度 /// public class Temp1 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT1CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT1No { get; set; } /// /// 电芯温度1数据有效性 /// [Property(14, 2)] public byte CSCT01QUAL { get; set; } /// /// 电芯温度2数据有效性 /// [Property(16, 2)] public byte CSCT02QUAL { get; set; } /// /// 电芯温度3数据有效性 /// [Property(18, 2)] public byte CSCT03QUAL { get; set; } /// /// 电芯温度4数据有效性 /// [Property(20, 2)] public byte CSCT04QUAL { get; set; } /// /// 电芯温度5数据有效性 /// [Property(22, 2)] public byte CSCT05QUAL { get; set; } /// /// 温度1 /// [Property(24, 8)] public byte CSCT01 { get; set; } /// /// 温度2 /// [Property(32, 8)] public byte CSCT02 { get; set; } /// /// 温度3 /// [Property(40, 8)] public byte CSCT03 { get; set; } /// /// 温度4 /// [Property(48, 8)] public byte CSCT04 { get; set; } /// /// 温度5 /// [Property(56, 8)] public byte CSCT05 { get; set; } } }