using System;
namespace Znyc.Dispatching.Application
{
public class VehicleGpsOutput
{
public long Id { get; set; }
///
/// 所属公司
///
public long CompanyId { get; set; }
///
/// 车辆编号
///
public string VehicleCode { get; set; }
///
/// 车牌号
///
public string VehiclePlate { get; set; }
///
/// 联系人
///
public string ContactPerson { get; set; }
///
/// 联系电话
///
public string ContactPhone { get; set; }
///
/// 状态(字典 1正常 -1停用 -2删除 0审核中)
///
public int Status { get; set; }
///
/// 打火状态
///
public int Acc { get; set; }
///
/// 工作状态
///
public int Work { get; set; }
///
/// Gps状态
///
public int GpsState { get; set; }
///
/// Gps状态名称
///
public string GpsStateName { get; set; }
///
/// GPS时间
///
public string GpsTime { get; set; }
///
/// 最后通讯时间
///
public string RecTime { get; set; }
///
/// 速度
///
public int Speed { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// ACC持续时长
///
public string AccDurationTime { get; set; }
///
/// 经度
///
public decimal Longitude { get; set; }
///
/// 纬度
///
public decimal Latitude { get; set; }
///
/// IMEI号
///
public string ImeiNo { get; set; }
///
/// 设备类型
///
public int TerminalType { get; set; }
///
/// 开通时间
///
public DateTime OpenTime { get; set; }
///
/// 到期时间
///
public DateTime ExpireTime { get; set; }
///
/// 设备类型
///
public string TerminalTypeName { get; set; }
///
/// 离线时长
///
public string OfflineTime { get; set; }
///
/// work工作时长
///
public string WorkDurationTime { get; set; }
///
/// 静止时长
///
public string DurationTime { get; set; }
///
/// 是否开启超速报警
///
public bool IsOverspeedAlarm { get; set; }
///
/// 超速速度
///
public int Overspeed { get; set; }
///
/// 是否激活
///
public bool IsActivate { get; set; }
///
/// 是否开启GPS
///
public bool IsGps { get; set; }
///
/// Sim卡号
///
public string SimNo { get; set; }
///
/// 更新时间
///
public DateTime ModifiedTime { get; set; }
///
/// Gps信号模式 1 GPS,2 基站
///
public int GpsMode { get; set; }
///
/// 车辆任务状态
///
public int VehicleTaskStatus { get; set; }
///
/// 车组人员
///
//public List VehiclePerson { get; set; }
public string VehiclePerson { get; set; }
///
/// 位置基本信息报警标志位 --欠压
///
public int GpsAlert { get; set; }
///
/// Gps信号源
///
public string GpsSignalSource { get; set; }
///
/// 掉电
///
public int Useing { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 方向
///
public int Direct { get; set; } = 0;
public bool IsOverstopAlarm { get; set; }
public bool IsOveroffAlarm { get; set; }
public int Overstop { get; set; }
}
}