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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Entity.Api.Req
|
|
|
|
|
{
|
|
|
|
|
public class RfidPreviewReq
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆VIN码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string strVelVin { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string strVelType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆MAC
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string strVelMac { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车牌号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string strVelNo { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|