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.
22 lines
541 B
22 lines
541 B
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
namespace Service.Charger.Msg.Bms
|
|
{
|
|
/// <summary>
|
|
/// 系统总放电
|
|
/// </summary>
|
|
public class DisChrgaccuInfo : ASDU
|
|
{
|
|
/// <summary>
|
|
/// 系统总放电电量(累计)
|
|
/// </summary>
|
|
[Property(0, 32)]
|
|
public float SysAccuDischrgEnergy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 系统总放电容量(累计)
|
|
/// </summary>
|
|
[Property(32, 32)]
|
|
public float SysAccuDischrgCapacity { get; set; }
|
|
}
|
|
} |