LASAPlatform/OpenAuth.Repository/Domain/LasaTask.cs

27 lines
775 B
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_task")]
public class LasaTask
{
public string Id { get; set; }
public string TaskName { get; set; }
public string TaskType { get; set; }
public string TaskDronePort { get; set; }
public string TaskAirLine { get; set; }
public int ReturnAltitude { get; set; }
public string LossOfControlAction { get; set; }
public string ContinuationMode { get; set; }
public string AIInspection { get; set; }
public long CreateId { get; set; }
public DateTime? CreateTime { get; set; }
}
}