feat(gencode): 增强代码生成模块功能

- 添加列长度和默认值字段支持
- 改进表创建时的唯一性检查
- 优化字段属性初始化逻辑
- 增强前端表格展示和编辑功能
- 修复任务调度状态获取问题
- 清理和优化文档内容

refactor: 重构数据库查询逻辑

- 统一不同数据库类型的字段查询方式
- 添加唯一性约束检查
- 优化字段类型转换处理

fix: 修复任务重启逻辑

- 确保任务重启时使用最新配置
- 改进任务状态获取方法

docs: 更新部署文档

- 添加详细部署说明
- 优化文档结构
- 移除冗余内容

chore: 清理.gitignore和.gitattributes

- 移除冗余配置
- 更新忽略规则
This commit is contained in:
zhangtao
2025-11-07 01:46:50 +08:00
parent 4d171b19ac
commit fd4598ea39
17 changed files with 538 additions and 409 deletions
+4
View File
@@ -209,6 +209,10 @@ export interface GenTableColumnSchema {
column_comment?: string;
/** 列类型 */
column_type?: string;
/** 列长度 */
column_length?: string;
/** 列默认值 */
column_default?: string;
/** PYTHON类型 */
python_type?: string;
/** PYTHON字段名 */