feat: 添加 /api/review-stats 端点和仪表盘实时数据集成

This commit is contained in:
clz
2026-01-10 21:18:38 +08:00
parent 06f6c847d8
commit 6374f55aa1
5 changed files with 668 additions and 18 deletions

View File

@@ -55,5 +55,8 @@ func setupAPIRoutes(r *gin.Engine) {
// 月度统计(全部数据)
api.GET("/monthly-stats", handler.MonthlyStats)
// 待复核数据统计
api.GET("/review-stats", handler.ReviewStats)
}
}