feat: 添加局后复盘服务与页面容器组件
新增复盘服务相关DTO、Controller和Service 实现复盘页面容器组件ReviewPageContainer 更新前端页面架构文档与开发计划 移除DemoGameController中的演示复盘接口 补充复盘服务单元测试
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.xuezhanmaster.review.dto;
|
||||
|
||||
/**
|
||||
* 复盘页里的“关键失误”条目。
|
||||
* 字段口径优先服务 H5 展示与后续训练题沉淀,不先做复杂评分模型。
|
||||
*/
|
||||
public record ReviewMistakeItem(
|
||||
String severity,
|
||||
String title,
|
||||
String issue,
|
||||
String suggestion
|
||||
) {
|
||||
}
|
||||
Reference in New Issue
Block a user