using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { public class BranChcurr : ASDU { /// /// 支路1电流 /// [Property(0, 16)] public float Branch1Curr { get; set; } /// /// 支路2电流 /// [Property(16, 16)] public float Branch2Curr { get; set; } /// /// 支路3电流 /// [Property(32, 16)] public float Branch3Curr { get; set; } /// /// 支路4电流 /// [Property(48, 16)] public float Branch4Curr { get; set; } } }