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.
53 lines
1.2 KiB
53 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Models.CarTaiYa
|
|
{
|
|
/// <summary>
|
|
/// 胎压类型
|
|
/// </summary>
|
|
public class CarfactoryTaiYa
|
|
{
|
|
public int id { get; set; }
|
|
/// <summary>
|
|
/// 车厂名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
/// <summary>
|
|
/// 拼音
|
|
/// </summary>
|
|
public string py { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子集节点
|
|
/// </summary>
|
|
|
|
public List<Carchildren> children { get; set; }
|
|
/// <summary>
|
|
/// 所属区域
|
|
/// </summary>
|
|
public string area { get; set; }
|
|
}
|
|
|
|
public class Carchildren
|
|
{
|
|
public int id { get; set; }
|
|
/// <summary>
|
|
/// 车辆类型名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
public List<CarTypechildren> children { get; set; }
|
|
}
|
|
|
|
public class CarTypechildren
|
|
{
|
|
public int id { get; set; }
|
|
/// <summary>
|
|
/// 车辆类型名称
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
}
|
|
}
|
|
|