Files
BabyVideoService/Db/Tables/ConfigTable.cs
2026-02-08 17:09:34 +08:00

15 lines
263 B
C#

using SqlSugar;
namespace ACBuildService;
[SugarTable("cfg")]
public class ConfigTable
{
/// <summary>
/// 设备id
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Key { get; set; }
public string Value { get; set; }
}