namespace BatCharging.Model { public class OfflineStopChargingRes : ASDU { /// /// 应答结果 /// public byte Result { get; set; } public OfflineStopChargingRes(byte result) { this.Result = result; this.FrameTypeNo = 45; //this.SetReason(4); this.MsgBodyCount = 1; //this.RecordType = 44; } } }