using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// MaintainVehicleInfo Data Structure.
///
[Serializable]
public class MaintainVehicleInfo : AopObject
{
///
/// 背景图片
///
[XmlElement("bg_url")]
public string BgUrl { get; set; }
///
/// 发动机编号
///
[XmlElement("engine_no")]
public string EngineNo { get; set; }
///
/// 发动机类型
///
[XmlElement("engine_type")]
public string EngineType { get; set; }
///
/// 生产厂商
///
[XmlElement("manufacturer")]
public string Manufacturer { get; set; }
///
/// 车主平台车型id
///
[XmlElement("model_id")]
public string ModelId { get; set; }
///
/// 生产年份
///
[XmlElement("production_year")]
public string ProductionYear { get; set; }
///
/// 发动机排量
///
[XmlArray("swept_volume")]
[XmlArrayItem("string")]
public List SweptVolume { get; set; }
///
/// 品牌Logo
///
[XmlElement("vi_brand_logo")]
public string ViBrandLogo { get; set; }
///
/// 品牌名称
///
[XmlElement("vi_brand_name")]
public string ViBrandName { get; set; }
///
/// 车辆归属地id
///
[XmlElement("vi_city_id")]
public string ViCityId { get; set; }
///
/// 城市名称
///
[XmlElement("vi_city_name")]
public string ViCityName { get; set; }
///
/// 车辆图标URL
///
[XmlElement("vi_logo_url")]
public string ViLogoUrl { get; set; }
///
/// 行驶里程
///
[XmlElement("vi_mileage")]
public string ViMileage { get; set; }
///
/// 车型名称
///
[XmlElement("vi_model_name")]
public string ViModelName { get; set; }
///
/// 车牌号
///
[XmlElement("vi_number")]
public string ViNumber { get; set; }
///
/// 车系名称
///
[XmlElement("vi_series_name")]
public string ViSeriesName { get; set; }
///
/// 上路日期
///
[XmlElement("vi_start_time")]
public string ViStartTime { get; set; }
///
/// 年款
///
[XmlElement("vi_style_name")]
public string ViStyleName { get; set; }
///
/// 车架号
///
[XmlArray("vi_vin")]
[XmlArrayItem("string")]
public List ViVin { get; set; }
///
/// 行驶证注册时间
///
[XmlElement("vl_start_time")]
public string VlStartTime { get; set; }
}
}