You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
591 B
21 lines
591 B
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
namespace Service.TBox.Msg.Host;
|
|
|
|
public class VinMsg : BaseMsg
|
|
{
|
|
[Property(80, 8)] public byte Seq { get; set; }
|
|
[Property(88, 8)] public byte B2 { get; set; }
|
|
[Property(96, 8)] public byte B3 { get; set; }
|
|
[Property(104, 8)] public byte B4 { get; set; }
|
|
[Property(112, 8)] public byte B5 { get; set; }
|
|
[Property(120, 8)] public byte B6 { get; set; }
|
|
[Property(128, 8)] public byte B7 { get; set; }
|
|
[Property(136, 8)] public byte B8 { get; set; }
|
|
|
|
public VinMsg()
|
|
{
|
|
Id = 0x18E1F3D1;
|
|
}
|
|
}
|