using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common
{
///
/// AVI/BDC向MES请求车辆特征信息
/// rfidPrint : pvi号+白车身物料号后4位
/// vin : vin号
/// AB00 : 车型
/// SE00 : 车身颜色
/// AD00 : 天窗
///
public class GetCarCharacteristicInfo
{
///
/// 唯一标识
///
public string unionKey { get; set; }
///
/// 工厂编码
///
public string code { get; set; }
///
/// pvi号+白车身物料号后4位
///
public string rfid { get; set; }
///
/// VIN号
///
public bool success { get; set; }
///
/// 同步时间
///
public DateTime? messageTime { get; set; }
}
}