LASAPlatform/OpenAuth.Repository/Domain/LasaAirLine.cs

31 lines
1.6 KiB
C#
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
[SugarTable("lasa_airline")]
public class LasaAirLine
{
public string Id { get; set; } // 主键
public string AirLineName { get; set; } // 航线名称
public string AirLineType { get; set; } // 航线类型
public string UavId { get; set; } // 无人机 ID
public string FlyToFirstPointMode { get; set; } // 飞向首航点模式
public int SafeTakeoffAltitude { get; set; } // 安全起飞高度
public int SafeTakeoffSpeed { get; set; } // 飞向首航点速度
public double GlobalRouteSpeed { get; set; } // 全局航线速度
public string TaskCompletionAction { get; set; } // 任务完成动作
public string OutOfControlOption { get; set; } // 失控选项
public string TypeOfOutOfControlAction { get; set; } // 失控动作类型
public string GlobalWayPointType { get; set; } // 全局航点类型
public string PTZControlMode { get; set; } // 云台控制模式
public string AircraftYawAngleMode { get; set; } // 飞行器偏航角模式
public DateTime? CreateTime { get; set; } // 创建时间
public long CreateId { get; set; } // 创建人
}
}