feat:添加本地数据库

This commit is contained in:
2025-11-25 17:12:09 +08:00
parent bc1a909a4d
commit b23514cfe6
12 changed files with 2432 additions and 634 deletions

9
src/types/transaction.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
export interface Transaction {
id: string;
amount: number;
merchant: string;
category: string;
date: string;
note?: string;
syncStatus: 'pending' | 'synced' | 'error';
}