feat: 添加局后复盘服务与页面容器组件

新增复盘服务相关DTO、Controller和Service
实现复盘页面容器组件ReviewPageContainer
更新前端页面架构文档与开发计划
移除DemoGameController中的演示复盘接口
补充复盘服务单元测试
This commit is contained in:
hujun
2026-03-20 16:50:49 +08:00
parent 905565e7c4
commit faf87fe3d6
27 changed files with 1639 additions and 280 deletions

View File

@@ -0,0 +1,13 @@
package com.xuezhanmaster.review.dto;
/**
* 复盘页里的“关键失误”条目。
* 字段口径优先服务 H5 展示与后续训练题沉淀,不先做复杂评分模型。
*/
public record ReviewMistakeItem(
String severity,
String title,
String issue,
String suggestion
) {
}