2025-05-12 16:53:24 +08:00
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.Repository.Domain
|
|
|
|
|
|
{
|
2025-06-09 15:17:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务表
|
|
|
|
|
|
/// </summary>
|
2025-05-19 16:47:53 +08:00
|
|
|
|
[SugarTable("lasa_task")]
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public class LasaTask
|
|
|
|
|
|
{
|
2025-06-09 15:17:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// id
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string Id { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务名称
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string TaskName { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务类型
|
|
|
|
|
|
/// </summary>
|
2025-06-13 08:56:22 +08:00
|
|
|
|
public int TaskType { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 执行机场
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string TaskDronePort { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 机场航线
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string TaskAirLine { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返航高度
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public int ReturnAltitude { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 返航失控动作
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string LossOfControlAction { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 续飞模式
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string ContinuationMode { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// AI巡检
|
|
|
|
|
|
/// </summary>
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public string AIInspection { get; set; }
|
2025-06-11 16:53:41 +08:00
|
|
|
|
|
2025-06-10 11:34:31 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 状态
|
|
|
|
|
|
/// </summary>
|
2025-06-11 16:53:41 +08:00
|
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
|
2025-06-10 11:34:31 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 周期公式
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PeriodicFormula { get; set; }
|
2025-06-09 15:17:14 +08:00
|
|
|
|
|
2025-06-11 16:53:41 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 航线id
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string AirLineId { get; set; }
|
2025-05-12 16:53:24 +08:00
|
|
|
|
public long CreateId { get; set; }
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
2025-06-19 09:19:26 +08:00
|
|
|
|
|
|
|
|
|
|
public int WaylinePrecisionType { get; set; }
|
2025-05-12 16:53:24 +08:00
|
|
|
|
|
2025-06-09 15:17:14 +08:00
|
|
|
|
// todo 关联openjob id
|
2025-05-12 16:53:24 +08:00
|
|
|
|
}
|
2025-06-09 15:17:14 +08:00
|
|
|
|
}
|