CarTrackingRuleEngine/RuleEngine/Models/Online.cs

39 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class Online
{
public int Id { get; set; }
public string Rfidstring { get; set; }
public string AppVersion { get; set; }
public DateTime? ReceivedTime { get; set; }
public DateTime? DeviceTime { get; set; }
public int? CarStatus { get; set; }
public bool? EngineOn { get; set; }
public bool? StrongBoxOpen { get; set; }
public bool? IsSos { get; set; }
public bool? IsGPSLost { get; set; }
public double? GpsLat { get; set; }
public double? GpsLon { get; set; }
public string GpsInfor { get; set; }
public double? NetworkLat { get; set; }
public double? NetworkLon { get; set; }
public bool? IsJamming { get; set; }
public bool? IsSpoofing { get; set; }
public int? GpsVelocity { get; set; }
public int? CarId { get; set; }
public int? CellId { get; set; }
public int? LacId { get; set; }
public virtual Car Car { get; set; }
public bool IsCam1OK { get; internal set; }
public bool IsCam2OK { get; internal set; }
}
}