You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.2 KiB
72 lines
2.2 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Jd.Api.Domain;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class HawkCarInfoVo:JdObject{
|
|
[JsonProperty("car_model_id")]
|
|
public int
|
|
|
|
carModelId
|
|
{ get; set; }
|
|
[JsonProperty("car_model")]
|
|
public string
|
|
|
|
carModel
|
|
{ get; set; }
|
|
[JsonProperty("car_brand_id")]
|
|
public int
|
|
|
|
carBrandId
|
|
{ get; set; }
|
|
[JsonProperty("car_brand")]
|
|
public string
|
|
|
|
carBrand
|
|
{ get; set; }
|
|
[JsonProperty("car_series_id")]
|
|
public int
|
|
|
|
carSeriesId
|
|
{ get; set; }
|
|
[JsonProperty("car_series")]
|
|
public string
|
|
|
|
carSeries
|
|
{ get; set; }
|
|
[JsonProperty("car_power_id")]
|
|
public int
|
|
|
|
carPowerId
|
|
{ get; set; }
|
|
[JsonProperty("car_power")]
|
|
public string
|
|
|
|
carPower
|
|
{ get; set; }
|
|
[JsonProperty("car_year_id")]
|
|
public int
|
|
|
|
carYearId
|
|
{ get; set; }
|
|
[JsonProperty("car_year")]
|
|
public string
|
|
|
|
carYear
|
|
{ get; set; }
|
|
[JsonProperty("car_name")]
|
|
public string
|
|
|
|
carName
|
|
{ get; set; }
|
|
[JsonProperty("id")]
|
|
public int
|
|
|
|
id
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|