feat(config): 扩展数据类型映射与数据库字段备注提取功能

- 在 ColumnDataType 中新增对 PostgreSQL 和 Oracle 数据类型的支持
- 更新 Db2JSON 方法,优化对达梦数据库表和列信息的查询逻辑
- 增强字段备注解析,支持从备注中提取提示信息并清理标签
- 更新文档,详细说明字段备注格式及前端提示的展示效果
This commit is contained in:
2026-03-23 16:48:56 +08:00
parent 82cf5a14d2
commit 34365fdaa0
11 changed files with 626 additions and 40 deletions
+3 -2
View File
@@ -187,8 +187,9 @@ func (p *IdentifierProcessor) ProcessFieldList(fields string) string {
return fields
}
// 使用与 ProcessConditionString 相同的逻辑
return p.ProcessConditionString(fields)
result := p.ProcessConditionString(fields)
result = p.convertQuotes(result)
return result
}
// stripQuotes 去除标识符两端的引号(反引号或双引号)