using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Entity.Api.Req
{
public class RfidPreviewReq
{
///
/// 车辆VIN码
///
public string strVelVin { get; set; }
///
/// 车型号
///
public string strVelType { get; set; }
///
/// 车辆MAC
///
public string strVelMac { get; set; }
///
/// 车牌号
///
public string strVelNo { get; set; }
}
}