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.

54 lines
1.3 KiB

This file contains ambiguous Unicode characters!

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.

namespace Entity.Api.Resp;
/// <summary>
/// 换电车辆信息
/// </summary>
public class SwapVehicleResp
{
/// <summary>
/// 换电订单号
/// </summary>
public string? OrderNo { get; set; }
/// <summary>
/// 车辆VIN码
/// </summary>
public string? VelVin { get; set; }
/// <summary>
/// 车型:暂无
/// </summary>
public string? VelType { get; set; }
/// <summary>
/// 车辆MAC地址
/// </summary>
public string? VelMac { get; set; }
/// <summary>
/// 车牌号
/// </summary>
public string? VelNo { get; set; }
/// <summary>
/// 锁止状态 1 解锁状态 2 上锁状态
/// </summary>
/// 锁止状态 1 解锁状态 2 上锁状态
public byte? LockStatus { get; set; }
/// <summary>
/// 钥匙状态 0: OFF 1: ACC 2: ON 0xFF: 不支持
/// </summary>
public byte? KeyStatus { get; set; }
/// <summary>
/// 车辆档位 最小值:-1最大值 14 0x0F表示无效-1 代表倒档 R0 代表空挡 N大于 0 代表前进档 D
/// </summary>
public short? Gear { get; set; }
/// <summary>
/// 刹车状态 "0:未拉手刹1已拉手刹 其它值无效"
/// </summary>
public byte? Break { get; set; }
}