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 Service.Execute.Model;
public class RfidReadModel
{
/// <summary>
/// 1:成功 0:失败
/// </summary>
public string Result { get; set; }
/// 车辆VIN码
public string VelVin { get; set; }
/// 车辆电池包数
public string BattNum { set; get; }
/// 车辆配方-加解锁高度,整型,单位:mm
public string VelRecp { set; get; }
/// 车辆MAC地址
public string? VelMac { set; get; }
/// 车辆车牌号
public string VelNo { set; get; }
}