LASAPlatform/OpenAuth.Repository/Domain/LasaUav.cs

34 lines
996 B
C#
Raw Normal View History

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-05-19 16:47:53 +08:00
[SugarTable("lasa_uav")]
2025-05-12 16:53:24 +08:00
public class LasaUav
{
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 Status { get; set; }
public DateTime? UpdateTime { get; set; }
public string Sn { get; set; }
public string DevicePicUrl { get; set; }
public string Did { get; set; }
public string PId { 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; }
2025-05-12 16:53:24 +08:00
}
}