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.
24 lines
653 B
24 lines
653 B
using HybirdFrameworkCore.Autofac.Attribute;
|
|
|
|
namespace Service.TBox.Msg.TBox;
|
|
|
|
public class VersionMsg : BaseMsg
|
|
{
|
|
/// <summary>
|
|
/// 换电控制器软硬件版本号
|
|
/// </summary>
|
|
[Property(32, 8)] public byte SoftR { get; set; }
|
|
/// <summary>
|
|
/// 换电控制器软硬件版本号
|
|
/// </summary>
|
|
[Property(40, 8)] public byte SoftB { get; set; }
|
|
/// <summary>
|
|
/// 换电控制器软硬件版本号
|
|
/// </summary>
|
|
[Property(48, 8)] public byte HardV { get; set; }
|
|
/// <summary>
|
|
/// 换电控制器软硬件版本号
|
|
/// </summary>
|
|
[Property(56, 8)] public byte HardB { get; set; }
|
|
}
|