mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-27 14:52:51 +00:00
* feat: ai相关调用调整 * feat: ai请求模式变更 * feat: ai自动化完善 * feat: 添加环境变量支持,条件渲染开发环境特定元素 * feat: 2.5版本插件,不再冗余进主项目,可以做到完全自动安装。 * feat: 添加插件管理功能,包括获取插件列表和删除插件的API接口 * feat: 同步测试插件的id调整 * feat: 增加插件相关初始化api * feat: 增加登录日志 * feat: 增加签发token功能 * feat: 更安全的目录清理功能,确保仅在无Go文件时删除目录 * feat: 增加skills定义能力 * feat: 优化技能管理界面,增强用户体验和视觉效果 * feat: 更新授权链接,确保用户获取最新的授权信息 * feat: 修改技能定义器名称为“Skills管理”,并重命名文件为sys_skills.go * feat: 增加全局约束的获取和保存功能,更新相关API和前端实现 * feat: 增加skills全局约束管理 * feat: 添加 vite-check-multiple-dom 插件,支持路由多根检测 (#2173) --------- Co-authored-by: piexlMax(奇淼 <qimiaojiangjizhao@gmail.com> Co-authored-by: Azir-11 <2075125282@qq.com> Co-authored-by: 青菜白玉汤 <79054161+Azir-11@users.noreply.github.com>
28 lines
946 B
Go
28 lines
946 B
Go
package response
|
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
|
|
|
type Db struct {
|
|
Database string `json:"database" gorm:"column:database"`
|
|
}
|
|
|
|
type Table struct {
|
|
TableName string `json:"tableName" gorm:"column:table_name"`
|
|
}
|
|
|
|
type Column struct {
|
|
DataType string `json:"dataType" gorm:"column:data_type"`
|
|
ColumnName string `json:"columnName" gorm:"column:column_name"`
|
|
DataTypeLong string `json:"dataTypeLong" gorm:"column:data_type_long"`
|
|
ColumnComment string `json:"columnComment" gorm:"column:column_comment"`
|
|
PrimaryKey bool `json:"primaryKey" gorm:"column:primary_key"`
|
|
}
|
|
|
|
type PluginInfo struct {
|
|
PluginName string `json:"pluginName"`
|
|
PluginType string `json:"pluginType"` // web, server, full
|
|
Apis []system.SysApi `json:"apis"`
|
|
Menus []system.SysBaseMenu `json:"menus"`
|
|
Dictionaries []system.SysDictionary `json:"dictionaries"`
|
|
}
|