LASAPlatform/OpenAuth.Repository/Domain/LasaDeviceDictionary.cs

25 lines
634 B
C#
Raw Permalink Normal View History

2025-07-04 14:01:09 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 设备类型字典
/// </summary>
2025-11-26 10:23:18 +08:00
[SugarTable("lasa_devicedictionary")]
2025-07-04 14:01:09 +08:00
public class LasaDeviceDictionary
{
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
public int Domain { get; set; }
public int DeviceType { get; set; }
public int SubType { get; set; }
public string DeviceName { get; set; }
public string DeviceDesc { get; set; }
}
}