You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
501 B

using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Bms
{
public class BattenergyInfo6 : ASDU
{
/// <summary>
/// 系统站外回充能量(累计)
/// </summary>
[Property(0, 32)]
public float SysAccuReChrgEngyOutStat { get; set; }
/// <summary>
/// 系统站外放电能量(累计)
/// </summary>
[Property(32, 32)]
public float SysAccuDisChrgEngyOutStat { get; set; }
}
}