This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Execute.Model;
public class TboxHeartBeatMsg
{
/// <summary>
/// 锁止状态 1 解锁状态 2 上锁状态
/// </summary>
[Property(248, 8)]
public byte LockStatus { get; set; }
/// 钥匙状态 0: OFF 1: ACC 2: ON 0xFF: 不支持
[Property(256, 8)]
public byte KeyStatus { get; set; }
/// 电磁阀驱动状态 0:驱动关闭 1:驱动打开
[Property(264, 8)]
public byte SolenoidValveStatus { get; set; }
}