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 OfficeOpenXml.FormulaParsing.Excel.Functions.Math;
|
|
|
|
|
using Service.Cloud.Common;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Service.Cloud.Msg.Host.Req
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 2.1.1.1 换电站进行车辆认证
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class VehicleCertification : ICmd
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 认证方式
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int ty { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车牌号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string cn { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// rfid卡号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string rfid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆识别号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string vi { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// MAC地址
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mac { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 所有车队
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string mc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆所在换电通 道
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int en { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车辆进入的时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime? dt { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 车牌图片
|
|
|
|
|
/// </summary>
|
|
|
|
|
public String pic { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 站内外鉴权方式
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int mode { get; set; }
|
|
|
|
|
public string GetCmd()
|
|
|
|
|
{
|
|
|
|
|
return CloudConst.carAuth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|