using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AIK.Models.CarTaiYa
{
///
/// 胎压类型
///
public class CarfactoryTaiYa
{
public int id { get; set; }
///
/// 车厂名称
///
public string name { get; set; }
///
/// 拼音
///
public string py { get; set; }
///
/// 子集节点
///
public List children { get; set; }
///
/// 所属区域
///
public string area { get; set; }
}
public class Carchildren
{
public int id { get; set; }
///
/// 车辆类型名称
///
public string name { get; set; }
public List children { get; set; }
}
public class CarTypechildren
{
public int id { get; set; }
///
/// 车辆类型名称
///
public string name { get; set; }
}
}