using System; using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Charger.Msg.Charger.Resp; /// /// 故障复位命令回复 /// public class FaultResetResq : ASDU { ///// ///// 信息体地址 ///// // [Property(0, 24 )] //public byte[] MessageBodyAddress {get;set;} /// /// 应答结果 /// [Property(0, 8 )] public byte AnswerResult {get;set;} /// /// 不执行原因 /// [Property(8, 8 )] public byte ReasonNotExecuting {get;set;} }