feat: 添加局后复盘服务与页面容器组件
新增复盘服务相关DTO、Controller和Service 实现复盘页面容器组件ReviewPageContainer 更新前端页面架构文档与开发计划 移除DemoGameController中的演示复盘接口 补充复盘服务单元测试
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.xuezhanmaster.review.dto;
|
||||
|
||||
/**
|
||||
* 复盘页里的“后续训练方向”条目。
|
||||
* 当前先保留最小训练类型标签,避免过早引入大而全训练体系。
|
||||
*/
|
||||
public record ReviewTrainingFocusItem(
|
||||
String drillType,
|
||||
String title,
|
||||
String description
|
||||
) {
|
||||
}
|
||||
Reference in New Issue
Block a user