Template
Core 基础设施:Flavor 三包体系、Drift+SQLCipher 加密数据库 7 拦截器 Dio 网络栈、CrashReporter 崩溃日志、Sealed Failure 错误体系 5 色板主题系统、Auth 认证骨架(Clean Architecture)、Dev Panel、Mock Adapter 通过验证:flutter analyze(0 errors)、flutter test(全绿)、staging APK 74.8MB
15 lines
369 B
Dart
15 lines
369 B
Dart
/// 单条业务记录的同步状态机。Drift 表用 SyncColumns mixin 4 字段约定记录此状态。
|
|
enum SyncStatus {
|
|
/// 本地新增/修改,待同步到服务端
|
|
pending,
|
|
|
|
/// 正在同步中(避免并发重复发送)
|
|
syncing,
|
|
|
|
/// 已成功同步到服务端
|
|
synced,
|
|
|
|
/// 服务端拒绝/冲突,需要人工或策略解决
|
|
conflict,
|
|
}
|