using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class Temp5 : ASDU { /// /// 温度数据CRC /// [Property(0, 8)] public byte CSCT5CRC { get; set; } /// /// CSC号 /// [Property(8, 6)] public byte CSCT5No { get; set; } /// /// 电芯温度21数据有效性 /// [Property(14, 2)] public byte CSCT21QUAL { get; set; } /// /// 电芯温度22数据有效性 /// [Property(16, 2)] public byte CSCT22QUAL { get; set; } /// /// 电芯温度23数据有效性 /// [Property(18, 2)] public byte CSCT23QUAL { get; set; } /// /// 电芯温度24数据有效性 /// [Property(20, 2)] public byte CSCT24QUAL { get; set; } /// /// 电芯温度25数据有效性 /// [Property(22, 2)] public byte CSCT25QUAL { get; set; } /// /// 温度21 /// [Property(24, 8)] public byte CSCT21 { get; set; } /// /// 温度22 /// [Property(32, 8)] public byte CSCT22 { get; set; } /// /// 温度23 /// [Property(40, 8)] public byte CSCT23 { get; set; } /// /// 温度24 /// [Property(48, 8)] public byte CSCT24 { get; set; } /// /// 温度25 /// [Property(56, 8)] public byte CSCT25 { get; set; } } }