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