LASAPlatform/OpenAuth.Repository/Domain/LasaFirmware.cs

52 lines
1.2 KiB
C#
Raw Permalink Normal View History

2025-06-24 10:47:51 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Nodes;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 固件版本信息
/// </summary>
[SugarTable("lasa_firmware")]
public class LasaFirmware
{
/// <summary>
/// Desc:标识
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary>
/// Desc:版本
/// Default:
/// Nullable:False
/// </summary>
public string FirmwareVersion { get; set; }
/// <summary>
/// Desc:地址
/// Default:
/// Nullable:False
/// </summary>
public string FirmwarePath { get; set; }
/// <summary>
/// Desc:创建时间
/// Default:
/// Nullable:True
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// Desc:1-机场固件版本2-无人机固件版本
/// Default:
/// Nullable:True
public int Type { get; set; }
}
}