FrameworkConstant.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ERP.Framework.Constants
  7. {
  8. public static class FrameworkConstant
  9. {
  10. public const string REDIS = "Redis";
  11. public const string ADMIN = "admin";
  12. public const string ADMIN_PERMISSION = "*:*:*";
  13. public const string SECURITY_CONFIG = "Security";
  14. public const string TOKEN_PREFIX = "Bearer";
  15. public const string LOG_CONFIG = "Log";
  16. public const string LOGGING_FILE_PATH = "logs/log.log";
  17. //public const string AppSetting = "appsettings.json";
  18. //public const string ServerConfig = "Server";
  19. //public const string Consul = "Consul";
  20. //public const string CommonConfigKey = "IPL.HRMS.Common";
  21. //public const string SqlServer_ConnectionString = "SqlServer:ConnectionString";
  22. //public const string DBConfig = "DBConfig";
  23. //public const string ThreadPoolSettings = "ThreadPoolSettings";
  24. //public const string RabbitMq = "RabbitMq";
  25. //public const string JWT = "JWT";
  26. //public const string Whites = "Whites";
  27. //public const string Logger = "Logger";
  28. }
  29. }