using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Car.Msg.Host.Resp; public class HeartBeatMsgResp : BaseMsg { /// /// 锁止状态 1 待机 2 换电 /// [Property(248, 8)] public byte HostStatus { get; set; } public HeartBeatMsgResp(byte hostStatus) { Cmd = 0x04; Length = 33; HostStatus = hostStatus; } }