fix 适配pg数据库,代码生成支持excel导入

This commit is contained in:
yxh
2023-12-13 17:34:36 +08:00
parent da1bece186
commit 79440bf6fe
24 changed files with 17304 additions and 72 deletions

View File

@@ -38,7 +38,8 @@ type ToolsGenTableColumns struct {
SortColumn string // 排序字段名
SortType string // 排序方式 (asc顺序 desc倒序)
ShowDetail string // 是否有查看详情功能
ExcelPort string // 是否有导入导出excel功能
ExcelPort string // 是否有导出excel功能
ExcelImp string // 是否有导入excel功能
UseSnowId string //主键是否使用雪花ID
UseVirtual string // 树表是否使用虚拟表
}
@@ -64,6 +65,7 @@ var toolsGenTableColumns = ToolsGenTableColumns{
SortType: "sort_type",
ShowDetail: "show_detail",
ExcelPort: "excel_port",
ExcelImp: "excel_imp",
UseSnowId: "use_snow_id",
UseVirtual: "use_virtual",
}