refactor(videoreview): 简化机位评价数据结构

- 修改机位评价数据结构从嵌套Map改为简单Map
- 更新数据库映射文件中的类型处理器配置
- 调整评价统计逻辑以适应新的数据结构
- 优化导出功能以支持新格式的机位评价展示
- 更新相关实体类、DTO类及Mapper接口定义
- 移除不再使用的嵌套Map相关代码和依赖
This commit is contained in:
2025-12-15 08:33:48 +08:00
parent c9c4d9454a
commit 844bc318ae
7 changed files with 38 additions and 70 deletions

View File

@@ -65,7 +65,7 @@ public interface VideoReviewMapper extends BaseMapper<VideoReviewEntity> {
/**
* 查询所有机位评价数据(用于后端计算平均值)
*
* @return 机位评价列表(嵌套Map结构)
* @return 机位评价列表(Map结构: 机位ID -> 评分)
*/
List<Map<String, Map<String, Integer>>> selectAllCameraPositionRatings();
List<Map<String, Integer>> selectAllCameraPositionRatings();
}