SqlSugarConst.cs 645 B

1234567891011121314151617181920212223242526
  1. using SqlSugar;
  2. using System.Collections.Generic;
  3. namespace Admin.NET.Core
  4. {
  5. /// <summary>
  6. /// SqlSugar相关常量
  7. /// </summary>
  8. public class SqlSugarConst
  9. {
  10. /// <summary>
  11. /// 默认数据库标识
  12. /// </summary>
  13. public const string ConfigId = "Dilon";
  14. /// <summary>
  15. /// 默认表主键
  16. /// </summary>
  17. public const string PrimaryKey = "Id";
  18. /// <summary>
  19. /// SqlSugar数据库链接集合(多库代码生成用)
  20. /// </summary>
  21. public static List<ConnectionConfig> ConnectionConfigs = new List<ConnectionConfig>();
  22. }
  23. }