using HybirdFrameworkCore.Autofac.Attribute; namespace Service.Car.Msg.Host.Req; public class LockMsg : BaseMsg { /// /// [Property(248, 8)] public byte Command { get; set; } = 0x55; public LockMsg() { Cmd = 0x05; Length = 33; } }