feat(desktop): 实现阅读墙展示阅读记录

This commit is contained in:
2026-01-11 15:13:33 +08:00
parent 48fb287aa7
commit 8fafd7d8ec
7 changed files with 285 additions and 13 deletions

View File

@@ -34,3 +34,12 @@ export interface IUserReadingPersona {
mostUsedOccupation: string // 最常使用的阅读者身份
}
}
/**
* 每日阅读贡献统计模型
* */
export interface IContributionDay {
date: string
count: number
level: number
}