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.
26 lines
513 B
26 lines
513 B
namespace Service.Execute.Model.Tbox;
|
|
|
|
public class CarInfo
|
|
{
|
|
public string CarNo { get; set; }
|
|
|
|
|
|
public string CarVin { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 车型数据 "0:无效值1:牵引车 2:搅拌车 3:自卸车"
|
|
/// </summary>
|
|
public byte? CarType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电池数
|
|
/// </summary>
|
|
public int BatteryNum { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 车辆电池数据
|
|
/// </summary>
|
|
public List<BatteryInfo>? BatteryInfos { get; set; }
|
|
} |