CounterDroneBackend/src/CounterDrone.Core/Models/Waypoint.cs

31 lines
742 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using SQLite;
namespace CounterDrone.Core.Models
{
/// <summary>航路点</summary>
[Table("Waypoint")]
public class Waypoint
{
[PrimaryKey]
public string Id { get; set; } = Guid.NewGuid().ToString();
[Indexed]
public string TaskId { get; set; } = string.Empty;
/// <summary>关联的编队 ID多编队支持</summary>
public string GroupId { get; set; } = string.Empty;
[NotNull]
public int OrderIndex { get; set; }
public double PosX { get; set; }
public double PosY { get; set; }
public double PosZ { get; set; }
public double Altitude { get; set; }
public double Speed { get; set; }
}
}