| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /// 应用常量
- class AppConstants {
- AppConstants._();
- // ==================== 应用信息 ====================
-
- /// 应用名称
- static const String appName = '中方诊药云';
-
- /// 应用版本
- static const String appVersion = '1.0.0';
-
- /// 包名
- static const String packageName = 'com.sinomed.cloud';
- // ==================== 存储 Key ====================
-
- /// Token 存储 Key
- static const String keyToken = 'access_token';
-
- /// 用户信息存储 Key
- static const String keyUserInfo = 'user_info';
-
- /// 机构信息存储 Key
- static const String keyInstitutionInfo = 'institution_info';
- /// 语言设置 Key
- static const String keyLanguage = 'app_language';
-
- /// 主题设置 Key
- static const String keyTheme = 'app_theme';
-
- /// 首次启动 Key
- static const String keyFirstLaunch = 'first_launch';
- // ==================== 验证码相关 ====================
-
- /// 验证码长度
- static const int smsCodeLength = 4;
-
- /// 验证码倒计时(秒)
- static const int smsCodeCountdown = 60;
-
- /// 验证码有效期(分钟)
- static const int smsCodeExpireMinutes = 5;
- // ==================== 密码相关 ====================
-
- /// 密码最小长度
- static const int passwordMinLength = 6;
-
- /// 密码最大长度
- static const int passwordMaxLength = 20;
- // ==================== 分页相关 ====================
-
- /// 默认每页数量
- static const int defaultPageSize = 20;
-
- /// 最大每页数量
- static const int maxPageSize = 100;
- // ==================== 网络相关 ====================
-
- /// 请求重试次数
- static const int maxRetryCount = 3;
-
- /// 请求重试延迟(毫秒)
- static const int retryDelayMs = 1000;
- // ==================== 日期时间格式 ====================
-
- /// 日期格式
- static const String dateFormat = 'yyyy-MM-dd';
-
- /// 时间格式
- static const String timeFormat = 'HH:mm:ss';
-
- /// 日期时间格式
- static const String dateTimeFormat = 'yyyy-MM-dd HH:mm:ss';
- }
|