using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Bms { /// /// 充放电电流限制显示 /// public class PackCurrlmt : ASDU { /// /// 允许脉冲放电电流 /// [Property(0, 16)] public float AllwPulseDischrgCurr { get; set; } /// /// 允许脉冲回充电流 /// [Property(16, 16)] public float AllwPulseRechrgCurr { get; set; } /// /// 允许持续放电电流 /// [Property(32, 16)] public float AllwContiDischrgCurr { get; set; } /// /// 允许持续回充电流 /// [Property(48, 16)] public float AllwContiRechrgCurr { get; set; } } }