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