using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// /// public class CarGPSModelList { /// /// 农机GPS列表 /// public List carGPSList { get; set; } } /// /// 车辆GPS信息 /// public class CarGPSModel { /// /// 图片URL /// public string pic { get; set; } /// /// 车辆信息 /// public string name { get; set; } ///// ///// ///// // public string rating { get; set; } /// /// 在线时间 /// public string onlineTime { get; set; } /// /// 工作时长 /// public string workingHours { get; set; } /// /// IMEI号 /// public string imei { get; set; } /// /// 条码 /// public string barCode { get; set; } /// /// 位置类型 /// public string postType { get; set; } /// /// 位置 /// public string address { get; set; } /// /// 车辆ID /// public string id { get; set; } /// /// 经度 /// public string latitude { get; set; } /// /// 油压 /// public string hydraulic { get; set; } /// /// 水温 /// public string temperature { get; set; } /// /// 电压 /// public string voltage { get; set; } /// /// 转速 /// public string speed { get; set; } /// /// 是否在线 /// public string online { get; set; } /// /// 纬度 /// public string longitude { get; set; } } }