CarTrackingRuleEngine/RuleEngine/Models/WarningEvent.cs

29 lines
963 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class WarningEvent
{
public int Id { get; set; }
public int? WarningTypeId { get; set; }
public int? ScheduleId { get; set; }
public int? CarId { get; set; }
public double? StartLatitude { get; set; }
public double? StartLongitude { get; set; }
public double? EndLatitude { get; set; }
public double? EndLongitude { get; set; }
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public string EventContent { get; set; }
public int? NearPointId { get; set; }
public string NearPointName { get; set; }
public double? NearPointDistance { get; set; }
public bool? StopSound { get; set; }
public string Reason { get; set; }
public DateTime? ReasonInputTime { get; set; }
}
}