// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。
//
// 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。
//
// 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!
namespace Admin.NET.Core;
///
/// 配置常量
///
public class ConfigConst
{
///
/// 演示环境
///
public const string SysDemoEnv = "sys_demo";
///
/// 默认密码
///
public const string SysPassword = "sys_password";
///
/// 密码最大错误次数
///
public const string SysPasswordMaxErrorTimes = "sys_password_max_error_times";
///
/// 日志保留天数
///
public const string SysLogRetentionDays = "sys_log_retention_days";
///
/// 记录操作日志
///
public const string SysOpLog = "sys_oplog";
///
/// 单设备登录
///
public const string SysSingleLogin = "sys_single_login";
///
/// 登陆时隐藏租户
///
public const string SysHideTenantLogin = "sys_hide_tenant_login";
///
/// 登录二次验证
///
public const string SysSecondVer = "sys_second_ver";
///
/// 图形验证码
///
public const string SysCaptcha = "sys_captcha";
///
/// Token过期时间
///
public const string SysTokenExpire = "sys_token_expire";
///
/// RefreshToken过期时间
///
public const string SysRefreshTokenExpire = "sys_refresh_token_expire";
///
/// 发送异常日志邮件
///
public const string SysErrorMail = "sys_error_mail";
///
/// 域登录验证
///
public const string SysDomainLogin = "sys_domain_login";
// ///
// /// 租户域名隔离登录验证
// ///
// public const string SysTenantHostLogin = "sys_tenant_host_login";
///
/// 数据校验日志
///
public const string SysValidationLog = "sys_validation_log";
///
/// 行政区域同步层级 1-省级,2-市级,3-区县级,4-街道级,5-村级
///
public const string SysRegionSyncLevel = "sys_region_sync_level";
///
/// Default 分组
///
public const string SysDefaultGroup = "Default";
///
/// 支付宝授权页面地址
///
public const string AlipayAuthPageUrl = "alipay_auth_page_url_";
// ///
// /// 系统图标
// ///
// public const string SysWebLogo = "sys_web_logo";
//
// ///
// /// 系统主标题
// ///
// public const string SysWebTitle = "sys_web_title";
//
// ///
// /// 系统副标题
// ///
// public const string SysWebViceTitle = "sys_web_viceTitle";
//
// ///
// /// 系统描述
// ///
// public const string SysWebViceDesc = "sys_web_viceDesc";
//
// ///
// /// 水印内容
// ///
// public const string SysWebWatermark = "sys_web_watermark";
//
// ///
// /// 版权说明
// ///
// public const string SysWebCopyright = "sys_web_copyright";
//
// ///
// /// ICP备案号
// ///
// public const string SysWebIcp = "sys_web_icp";
//
// ///
// /// ICP地址
// ///
// public const string SysWebIcpUrl = "sys_web_icpUrl";
}