using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Car.Msg.Host.Resp; public class ElecMsgResp : BaseMsg { /// /// 0:成功;1:失败 /// [Property(248, 8)] public byte Result { get; set; } /// /// 0:成功;1:失败 /// /// public ElecMsgResp(byte result) { Cmd = 0x02; Length = 33; this.Result = result; } }