feat(video-review): 支持机位多维度评价功能
All checks were successful
ZhenTu-BE/pipeline/head This commit looks good

- 新增NestedMapTypeHandler处理嵌套Map与JSON互转
- 修改VideoReview相关实体类和DTO以支持嵌套Map结构
- 更新数据库查询逻辑以适配新的评价数据结构
- 优化平均分计算方法以处理多机位多维度评分
- 完善MyBatis配置中的typeHandler引用
- 补充视频查询接口返回任务开始结束时间字段
- 修正SQL关联查询条件确保数据准确性
This commit is contained in:
2025-11-18 10:14:42 +08:00
parent 3d361200b0
commit bb2367c5a6
9 changed files with 118 additions and 28 deletions

View File

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