using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { /// /// 支路单体温度 /// public class BrachSumTemp1 : ASDU { /// /// 支路1最高单体温度 /// [Property(0, 8)] public byte Bran1MaxCellTemp { get; set; } /// /// 支路1最低单体温度 /// [Property(8, 8)] public byte Bran1MinCellTemp { get; set; } /// /// 支路2最高单体温度 /// [Property(16, 8)] public byte Bran2MaxCellTemp { get; set; } /// /// 支路2最低单体温度 /// [Property(24, 8)] public byte Bran2MinCellTemp { get; set; } /// /// 支路3最高单体温度 /// [Property(32, 8)] public byte Bran3MaxCellTemp { get; set; } /// /// 支路3最低单体温度 /// [Property(40, 8)] public byte Bran3MinCellTemp { get; set; } /// /// 支路4最高单体温度 /// [Property(48, 8)] public byte Bran4MaxCellTemp { get; set; } /// /// 支路4最低单体温度 /// [Property(56, 8)] public byte Bran4MinCellTemp { get; set; } } }