CounterDroneBackend/src/CounterDrone.Core/Models/Waypoint.cs
tian ca0ce8aa52 重命名核心模型:TargetConfig→DroneProfile, SimTask→Scenario, TaskFullConfig→ScenarioConfig, TaskId→ScenarioId
- DroneType 枚举清理:移除 Electric/Piston,重编号 HighSpeed=2
- planner_config.json / defaults.json 同步迁移
- 238 单元测试全部通过
2026-06-18 15:02:58 +08:00

31 lines
745 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 ScenarioId { get; set; } = string.Empty;
/// <summary>关联的批次 ID多批次支持</summary>
public string WaveId { 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; }
}
}