using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ChangFa.Machinery.WebPage.Models { public class CarGPSModelList { 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 address { get; set; } /// /// 车辆ID /// public string id { get; set; } /// /// 经度 /// public string latitude { get; set; } /// /// 纬度 /// public string longitude { get; set; } } }