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