using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common { /// /// AVI/BDC向MES请求车辆特征信息 /// public class CarCharacteristicInfo { /// /// 唯一标识 /// public string unionKey { get; set; } /// /// 工厂编码 /// public string plantCode { get; set; } /// /// pvi号+白车身物料号后4位 /// public string rfidPrint { get; set; } /// /// VIN号 /// public string vin { get; set; } /// /// 同步时间 /// public string messageTime { get; set; } } }