namespace YY.Admin.Core.Const;
///
/// 配置常量
///
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 SysLoginOutReminder = "sys_login_out_reminder";
///
/// 登陆时隐藏租户
///
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";
///
/// 用户操作时:会话剩余不足该分钟数则续期为「Token过期时间」整段(桌面端)
///
public const string SysTokenIdleExtendMinutes = "sys_token_idle_extend_minutes";
///
/// 登录状态检查间隔(分钟),用于检测是否过期
///
public const string SysTokenCheckIntervalMinutes = "sys_token_check_interval_minutes";
///
/// 是否启用永不过期(桌面端)
///
public const string SysTokenNeverExpire = "sys_token_never_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";
}