namespace SafeCampus.System; /// /// 系统配置常量 /// public class SysConfigConst { #region MyRegion /// /// 系统名称 /// public const string SYS_NAME = "SYS_NAME"; /// /// ico图标 /// public const string SYS_ICO = "SYS_ICO"; /// /// 网站开启访问 /// public const string SYS_WEB_STATUS = "SYS_WEB_STATUS"; /// /// 网站关闭提示 /// public const string SYS_WEB_CLOSE_PROMPT = "SYS_WEB_CLOSE_PROMPT"; /// /// 系统logo /// public const string SYS_LOGO = "SYS_LOGO"; /// /// 系统版本 /// public const string SYS_VERSION = "SYS_VERSION"; /// /// 多租户开关 /// public const string SYS_TENANT_OPTIONS = "SYS_TENANT_OPTIONS"; /// /// 系统默认工作台 /// public const string SYS_DEFAULT_WORKBENCH_DATA = "SYS_DEFAULT_WORKBENCH_DATA"; #endregion #region 登录策略 /// /// 登录验证码开关 /// public const string LOGIN_CAPTCHA_OPEN = "LOGIN_CAPTCHA_OPEN"; /// /// 登录验证码开关 /// public const string LOGIN_CAPTCHA_TYPE = "LOGIN_CAPTCHA_TYPE"; /// /// 单用户登录开关 /// public const string LOGIN_SINGLE_OPEN = "LOGIN_SINGLE_OPEN"; /// /// 登录错误锁定时长 /// public const string LOGIN_ERROR_LOCK = "LOGIN_ERROR_LOCK"; /// /// 登录错误锁定时长 /// public const string LOGIN_ERROR_RESET_TIME = "LOGIN_ERROR_RESET_TIME"; /// /// 登录错误次数 /// public const string LOGIN_ERROR_COUNT = "LOGIN_ERROR_COUNT"; #endregion 登录策略 #region 密码策略 /// /// 默认用户密码 /// public const string PWD_DEFAULT_PASSWORD = "PWD_DEFAULT_PASSWORD"; /// /// 密码定期提醒更新 /// public const string PWD_REMIND = "PWD_REMIND"; /// /// 密码定期提醒更新时间 /// public const string PWD_REMIND_DAY = "PWD_REMIND_DAY"; /// /// 修改初始密码提醒 /// public const string PWD_UPDATE_DEFAULT = "PWD_UPDATE_DEFAULT"; /// /// 密码最小长度 /// public const string PWD_MIN_LENGTH = "PWD_MIN_LENGTH"; /// /// 包含数字 /// public const string PWD_CONTAIN_NUM = "PWD_CONTAIN_NUM"; /// /// 包含小写字母 /// public const string PWD_CONTAIN_LOWER = "PWD_CONTAIN_LOWER"; /// /// 包含大写字母 /// public const string PWD_CONTAIN_UPPER = "PWD_CONTAIN_UPPER"; /// /// 包含特殊字符 /// public const string PWD_CONTAIN_CHARACTER = "PWD_CONTAIN_UPPER"; #endregion 密码策略 #region 存储引擎 /// /// windows系统本地目录 /// public const string FILE_LOCAL_FOLDER_FOR_WINDOWS = "FILE_LOCAL_FOLDER_FOR_WINDOWS"; /// /// Unix系统本地目录 /// public const string FILE_LOCAL_FOLDER_FOR_UNIX = "FILE_LOCAL_FOLDER_FOR_UNIX"; /// /// MINIO文件AccessKey /// public const string FILE_MINIO_ACCESS_KEY = "FILE_MINIO_ACCESS_KEY"; /// /// MINIO文件SecretKey /// public const string FILE_MINIO_SECRET_KEY = "FILE_MINIO_SECRET_KEY"; /// /// MINIO文件EndPoint /// public const string FILE_MINIO_END_POINT = "FILE_MINIO_END_POINT"; /// /// MINIO文件默认存储桶 /// public const string FILE_MINIO_DEFAULT_BUCKET_NAME = "FILE_MINIO_DEFAULT_BUCKET_NAME"; #endregion 存储引擎 }