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.

24 lines
507 B

using System;
using System.Collections.Generic;
namespace BatCharging.Model
{
public class AdjustPower : ASDU
{
/// <summary>
///期望运行 功率
/// </summary>
public UInt16 ExpectPower { get; set; }
public AdjustPower(UInt16 expectPower)
{
this.FrameTypeNo = 45;
//this.SetReason(3);
this.MsgBodyCount = 1;
//this.RecordType = 5;
this.ExpectPower = expectPower;
}
}
}