using SqlSugar; using System.Collections.Generic; namespace Admin.NET.Core { /// /// SqlSugar相关常量 /// public class SqlSugarConst { /// /// 默认数据库标识 /// public const string ConfigId = "Dilon"; /// /// 默认表主键 /// public const string PrimaryKey = "Id"; /// /// SqlSugar数据库链接集合(多库代码生成用) /// public static List ConnectionConfigs = new List(); } }