15 lines
263 B
C#
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; }
|
|
} |