feat(data): 添加时间戳数据类型支持并优化维度转换逻辑

- 新增 TIMESTAMP 数据类型枚举值
- 为整型数据类型匹配添加 INT 关键字识别
- 移除维度转换中的冗余数据类型设置逻辑
- 修复数据类型转换过程中的潜在问题
This commit is contained in:
jerryjzhang
2026-06-04 21:02:41 +08:00
parent c0af25fe2e
commit c3cf8b1889
5 changed files with 26 additions and 29 deletions

View File

@@ -56,7 +56,8 @@ public class ChatQueryContext implements Serializable {
candidateQueries = candidateQueries.stream()
.sorted(Comparator.comparing(
semanticQuery -> semanticQuery.getParseInfo().getScore(),
Comparator.reverseOrder())).collect(Collectors.toList());
Comparator.reverseOrder()))
.collect(Collectors.toList());
return candidateQueries;
}