LASAPlatform/OpenAuth.Repository/Domain/LasaDronePort‌.cs

34 lines
1.2 KiB
C#
Raw Normal View History

2025-05-12 16:53:24 +08:00
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
2025-07-17 17:28:12 +08:00
[SugarTable("lasa_droneport")]
2025-05-19 16:47:53 +08:00
public class LasaDronePort
2025-05-12 16:53:24 +08:00
{
2025-06-12 15:09:40 +08:00
[SugarColumn(IsPrimaryKey = true)]
2025-05-12 16:53:24 +08:00
public string Id { get; set; }
public string Name { get; set; }
public string TypeId { get; set; }
public string SerialNumber { get; set; }
public string FirmwareVersion { get; set; }
public int BindStatus { get; set; }
2025-06-18 15:44:13 +08:00
public DateTime? UpdateTime { get; set; }
public DateTime? CreateTime { get; set; }
public string OrgId { get; set; }
2025-05-12 16:53:24 +08:00
public string Sn { get; set; }
public string DevicePicUrl { get; set; }
2025-06-12 15:09:40 +08:00
public string Did { get; set; }
2025-06-12 16:16:59 +08:00
/// <summary>
/// Desc:是否删除
/// Default:false
/// Nullable:True
/// </summary>
[SugarColumn(DefaultValue = "false")]
public bool IsDelete { get; set; }
public string WorkSpaceId { get; set; }
2025-07-04 10:19:40 +08:00
public string GateWay { get; set; }
2025-06-12 15:09:40 +08:00
[Navigate(NavigateType.OneToMany, nameof(LasaUav.PId))]
public List<LasaUav> UavList { get; set; }
2025-05-12 16:53:24 +08:00
}
}