using System; using System.Collections.Generic; namespace BatCharging.Model { public class OfflineStopCharging : ASDU { /// ///应答结果 /// public byte Result { get; set; } /// /// 保留 /// public UInt16 Remark { get; set; } public OfflineStopCharging(byte result, UInt16 remark) { this.Result = result; this.Remark = remark; this.FrameTypeNo = 45; //this.SetReason(4); this.MsgBodyCount = 1; //this.RecordType = 43; } } }