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) { this.Result = result; } }