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.
47 lines
1.1 KiB
47 lines
1.1 KiB
2 years ago
|
namespace GpsModels
|
||
|
{
|
||
|
public class VehicleModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 车辆id
|
||
|
/// </summary>
|
||
|
public long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 公司ID
|
||
|
/// </summary>
|
||
|
public long CompanyId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 车辆编号
|
||
|
/// </summary>
|
||
|
public string VehicleCode { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 车牌号
|
||
|
/// </summary>
|
||
|
public string VehiclePlate { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 车辆启用状态0:停用,1:启用。-->车辆在地图的状态,后面分析GpsState:(0:休-停用中;1:闲-可执行;2:忙-任务中)。
|
||
|
/// </summary>
|
||
|
public int Status { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 通讯SIM卡号
|
||
|
/// </summary>
|
||
|
public string SimNo { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// gps品牌
|
||
|
/// 1 博实结
|
||
|
/// 2 深圳
|
||
|
/// </summary>
|
||
|
public int TerminalType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 设备号
|
||
|
/// </summary>
|
||
|
public string TerminalNo { get; set; }
|
||
|
}
|
||
|
}
|