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.
|
|
|
|
namespace Service.Execute.Model.Tbox;
|
|
|
|
|
|
|
|
|
|
public class CarStatus
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆档位 最小值:-1,最大值 14 ,0x0F表示无效,-1 代表倒档 R;0 代表空挡 N;大于 0 代表前进档 D;
|
|
|
|
|
/// </summary>
|
|
|
|
|
public short? Gear { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 刹车状态 "0:未拉手刹1:已拉手刹 其它值无效"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte? Break { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 钥匙状态 "0:OFF1:ACC ON 2:IG ON 其它值无效"
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte? Keys { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 0:未解锁未上锁
|
|
|
|
|
/// 1:解锁成功
|
|
|
|
|
/// 2:上锁成功
|
|
|
|
|
/// 3:无效数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public byte? LockStatus { get; set; }
|
|
|
|
|
}
|