feat: 添加 AI 分类功能,支持交易自动分类与标签生成

This commit is contained in:
2026-03-12 10:59:44 +08:00
parent 8cbe01dd9c
commit 6a00875246
12 changed files with 594 additions and 27 deletions

View File

@@ -6,4 +6,11 @@ export interface Transaction {
date: string;
note?: string;
syncStatus: 'pending' | 'synced' | 'error';
aiCategory?: string;
aiTags?: string[];
aiConfidence?: number;
aiReason?: string;
aiStatus?: 'idle' | 'applied' | 'suggested' | 'failed';
aiModel?: string;
aiNormalizedMerchant?: string;
}